├── .gitignore ├── CHANGELOG.md ├── LICENSE.txt ├── MANIFEST.in ├── Pipfile ├── README.md ├── requirements.txt ├── setup.cfg ├── setup.py └── shapeshifter ├── __init__.py ├── mixins.py ├── tests ├── __init__.py ├── conftest.py ├── test_multi_form_view.py ├── test_multi_model_form_view.py └── testapp │ ├── __init__.py │ ├── forms.py │ ├── templates │ └── testapp │ │ └── forms.html │ ├── urls.py │ └── views.py └── views.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kennethlove/django-shapeshifter/HEAD/.gitignore -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kennethlove/django-shapeshifter/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kennethlove/django-shapeshifter/HEAD/LICENSE.txt -------------------------------------------------------------------------------- /MANIFEST.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kennethlove/django-shapeshifter/HEAD/MANIFEST.in -------------------------------------------------------------------------------- /Pipfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kennethlove/django-shapeshifter/HEAD/Pipfile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kennethlove/django-shapeshifter/HEAD/README.md -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kennethlove/django-shapeshifter/HEAD/requirements.txt -------------------------------------------------------------------------------- /setup.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kennethlove/django-shapeshifter/HEAD/setup.cfg -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kennethlove/django-shapeshifter/HEAD/setup.py -------------------------------------------------------------------------------- /shapeshifter/__init__.py: -------------------------------------------------------------------------------- 1 | __version__ = "18.9.23" -------------------------------------------------------------------------------- /shapeshifter/mixins.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kennethlove/django-shapeshifter/HEAD/shapeshifter/mixins.py -------------------------------------------------------------------------------- /shapeshifter/tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /shapeshifter/tests/conftest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kennethlove/django-shapeshifter/HEAD/shapeshifter/tests/conftest.py -------------------------------------------------------------------------------- /shapeshifter/tests/test_multi_form_view.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kennethlove/django-shapeshifter/HEAD/shapeshifter/tests/test_multi_form_view.py -------------------------------------------------------------------------------- /shapeshifter/tests/test_multi_model_form_view.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kennethlove/django-shapeshifter/HEAD/shapeshifter/tests/test_multi_model_form_view.py -------------------------------------------------------------------------------- /shapeshifter/tests/testapp/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /shapeshifter/tests/testapp/forms.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kennethlove/django-shapeshifter/HEAD/shapeshifter/tests/testapp/forms.py -------------------------------------------------------------------------------- /shapeshifter/tests/testapp/templates/testapp/forms.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kennethlove/django-shapeshifter/HEAD/shapeshifter/tests/testapp/templates/testapp/forms.html -------------------------------------------------------------------------------- /shapeshifter/tests/testapp/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kennethlove/django-shapeshifter/HEAD/shapeshifter/tests/testapp/urls.py -------------------------------------------------------------------------------- /shapeshifter/tests/testapp/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kennethlove/django-shapeshifter/HEAD/shapeshifter/tests/testapp/views.py -------------------------------------------------------------------------------- /shapeshifter/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kennethlove/django-shapeshifter/HEAD/shapeshifter/views.py --------------------------------------------------------------------------------