├── .circleci └── config.yml ├── .gitignore ├── CHANGELOG.md ├── LICENSE ├── MANIFEST.in ├── README.md ├── demo ├── base │ ├── __init__.py │ ├── forms.py │ ├── migrations │ │ ├── 0001_initial.py │ │ ├── 0002_auto_20170914_0729.py │ │ └── __init__.py │ ├── models.py │ ├── settings.py │ ├── templates │ │ ├── base.html │ │ ├── contact.html │ │ ├── contact_sent.html │ │ ├── index.html │ │ ├── profiles.html │ │ ├── profiles_form.html │ │ ├── records.html │ │ └── records_form.html │ ├── urls.py │ ├── views │ │ ├── __init__.py │ │ ├── contact.py │ │ ├── profile.py │ │ └── record.py │ └── wsgi.py ├── manage.py └── requirements.txt ├── docs ├── Makefile ├── conf.py └── index.rst ├── features ├── contact_view.feature ├── environment.py ├── profile_form_view.feature ├── record_form_view.feature └── steps │ ├── contact_view.py │ ├── profile_form_view.py │ └── record_form_view.py ├── multi_form_view ├── __init__.py └── base.py ├── requirements.txt ├── setup.cfg ├── setup.py ├── test.png └── test1.ico /.circleci/config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TimBest/django-multi-form-view/HEAD/.circleci/config.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TimBest/django-multi-form-view/HEAD/.gitignore -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TimBest/django-multi-form-view/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TimBest/django-multi-form-view/HEAD/LICENSE -------------------------------------------------------------------------------- /MANIFEST.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TimBest/django-multi-form-view/HEAD/MANIFEST.in -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TimBest/django-multi-form-view/HEAD/README.md -------------------------------------------------------------------------------- /demo/base/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /demo/base/forms.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TimBest/django-multi-form-view/HEAD/demo/base/forms.py -------------------------------------------------------------------------------- /demo/base/migrations/0001_initial.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TimBest/django-multi-form-view/HEAD/demo/base/migrations/0001_initial.py -------------------------------------------------------------------------------- /demo/base/migrations/0002_auto_20170914_0729.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TimBest/django-multi-form-view/HEAD/demo/base/migrations/0002_auto_20170914_0729.py -------------------------------------------------------------------------------- /demo/base/migrations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /demo/base/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TimBest/django-multi-form-view/HEAD/demo/base/models.py -------------------------------------------------------------------------------- /demo/base/settings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TimBest/django-multi-form-view/HEAD/demo/base/settings.py -------------------------------------------------------------------------------- /demo/base/templates/base.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TimBest/django-multi-form-view/HEAD/demo/base/templates/base.html -------------------------------------------------------------------------------- /demo/base/templates/contact.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TimBest/django-multi-form-view/HEAD/demo/base/templates/contact.html -------------------------------------------------------------------------------- /demo/base/templates/contact_sent.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TimBest/django-multi-form-view/HEAD/demo/base/templates/contact_sent.html -------------------------------------------------------------------------------- /demo/base/templates/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TimBest/django-multi-form-view/HEAD/demo/base/templates/index.html -------------------------------------------------------------------------------- /demo/base/templates/profiles.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TimBest/django-multi-form-view/HEAD/demo/base/templates/profiles.html -------------------------------------------------------------------------------- /demo/base/templates/profiles_form.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TimBest/django-multi-form-view/HEAD/demo/base/templates/profiles_form.html -------------------------------------------------------------------------------- /demo/base/templates/records.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TimBest/django-multi-form-view/HEAD/demo/base/templates/records.html -------------------------------------------------------------------------------- /demo/base/templates/records_form.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TimBest/django-multi-form-view/HEAD/demo/base/templates/records_form.html -------------------------------------------------------------------------------- /demo/base/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TimBest/django-multi-form-view/HEAD/demo/base/urls.py -------------------------------------------------------------------------------- /demo/base/views/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TimBest/django-multi-form-view/HEAD/demo/base/views/__init__.py -------------------------------------------------------------------------------- /demo/base/views/contact.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TimBest/django-multi-form-view/HEAD/demo/base/views/contact.py -------------------------------------------------------------------------------- /demo/base/views/profile.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TimBest/django-multi-form-view/HEAD/demo/base/views/profile.py -------------------------------------------------------------------------------- /demo/base/views/record.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TimBest/django-multi-form-view/HEAD/demo/base/views/record.py -------------------------------------------------------------------------------- /demo/base/wsgi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TimBest/django-multi-form-view/HEAD/demo/base/wsgi.py -------------------------------------------------------------------------------- /demo/manage.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TimBest/django-multi-form-view/HEAD/demo/manage.py -------------------------------------------------------------------------------- /demo/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TimBest/django-multi-form-view/HEAD/demo/requirements.txt -------------------------------------------------------------------------------- /docs/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TimBest/django-multi-form-view/HEAD/docs/Makefile -------------------------------------------------------------------------------- /docs/conf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TimBest/django-multi-form-view/HEAD/docs/conf.py -------------------------------------------------------------------------------- /docs/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TimBest/django-multi-form-view/HEAD/docs/index.rst -------------------------------------------------------------------------------- /features/contact_view.feature: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TimBest/django-multi-form-view/HEAD/features/contact_view.feature -------------------------------------------------------------------------------- /features/environment.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TimBest/django-multi-form-view/HEAD/features/environment.py -------------------------------------------------------------------------------- /features/profile_form_view.feature: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TimBest/django-multi-form-view/HEAD/features/profile_form_view.feature -------------------------------------------------------------------------------- /features/record_form_view.feature: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TimBest/django-multi-form-view/HEAD/features/record_form_view.feature -------------------------------------------------------------------------------- /features/steps/contact_view.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TimBest/django-multi-form-view/HEAD/features/steps/contact_view.py -------------------------------------------------------------------------------- /features/steps/profile_form_view.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TimBest/django-multi-form-view/HEAD/features/steps/profile_form_view.py -------------------------------------------------------------------------------- /features/steps/record_form_view.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TimBest/django-multi-form-view/HEAD/features/steps/record_form_view.py -------------------------------------------------------------------------------- /multi_form_view/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TimBest/django-multi-form-view/HEAD/multi_form_view/__init__.py -------------------------------------------------------------------------------- /multi_form_view/base.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TimBest/django-multi-form-view/HEAD/multi_form_view/base.py -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TimBest/django-multi-form-view/HEAD/requirements.txt -------------------------------------------------------------------------------- /setup.cfg: -------------------------------------------------------------------------------- 1 | [metadata] 2 | description-file = README.md 3 | -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TimBest/django-multi-form-view/HEAD/setup.py -------------------------------------------------------------------------------- /test.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TimBest/django-multi-form-view/HEAD/test.png -------------------------------------------------------------------------------- /test1.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TimBest/django-multi-form-view/HEAD/test1.ico --------------------------------------------------------------------------------