The Django Inline Formset Example project is an example of how to use Django's
inlineformset_factory.
It was originally inspired by Nick Lang's post that demonstrated how to use
the inlineformset_factory
.
$ cd ~/Sites $ curl -LOk https://github.com/epicserve/inlineformset-example/archive/django_1.7.zip && unzip django_1.7 $ mv inlineformset-example-django_1.7 inlineformset-example $ cd inlineformset-example $ virtualenv env $ source env/bin/activate $ pip install -r config/requirements/dev.txt $ ./manage.py migrate $ ./manage.py runserver