/inlineformset-example

An example Django project that demonstrates how to use the inlineformset_factory.

Primary LanguagePython

Django Inline Formset Example

Forked from: https://github.com/epicserve/inlineformset-example

To start playing:

virtualenv env
source env/bin/activate

pip install -r config/requirements/dev.txt

./manage.py createsuperuser
# E.g.: admin/admin

./manage.py makemigrations
./manage.py migrate

./manage.py runserver

Test on the browser:

Cleaning up (assuming the virtual enrinoment is still active):

deactivate
# local folder env can also be deleted:
rm -rf env