├── .DS_Store ├── .gitignore ├── README.rst ├── example_project ├── __init__.py ├── settings.py ├── urls.py └── wsgi.py ├── manage.py └── music ├── __init__.py ├── admin.py ├── forms.py ├── migrations └── __init__.py ├── models.py ├── templates └── music │ ├── album_form.html │ └── album_list.html ├── tests.py ├── urls.py └── views.py /.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timhughes/django-cbv-inline-formset/HEAD/.DS_Store -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | *.sqlite3 2 | *.pyc 3 | *.DS_Store 4 | -------------------------------------------------------------------------------- /README.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timhughes/django-cbv-inline-formset/HEAD/README.rst -------------------------------------------------------------------------------- /example_project/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /example_project/settings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timhughes/django-cbv-inline-formset/HEAD/example_project/settings.py -------------------------------------------------------------------------------- /example_project/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timhughes/django-cbv-inline-formset/HEAD/example_project/urls.py -------------------------------------------------------------------------------- /example_project/wsgi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timhughes/django-cbv-inline-formset/HEAD/example_project/wsgi.py -------------------------------------------------------------------------------- /manage.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timhughes/django-cbv-inline-formset/HEAD/manage.py -------------------------------------------------------------------------------- /music/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /music/admin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timhughes/django-cbv-inline-formset/HEAD/music/admin.py -------------------------------------------------------------------------------- /music/forms.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timhughes/django-cbv-inline-formset/HEAD/music/forms.py -------------------------------------------------------------------------------- /music/migrations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /music/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timhughes/django-cbv-inline-formset/HEAD/music/models.py -------------------------------------------------------------------------------- /music/templates/music/album_form.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timhughes/django-cbv-inline-formset/HEAD/music/templates/music/album_form.html -------------------------------------------------------------------------------- /music/templates/music/album_list.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timhughes/django-cbv-inline-formset/HEAD/music/templates/music/album_list.html -------------------------------------------------------------------------------- /music/tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timhughes/django-cbv-inline-formset/HEAD/music/tests.py -------------------------------------------------------------------------------- /music/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timhughes/django-cbv-inline-formset/HEAD/music/urls.py -------------------------------------------------------------------------------- /music/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timhughes/django-cbv-inline-formset/HEAD/music/views.py --------------------------------------------------------------------------------