├── .gitignore ├── README.md ├── custom_reg_form ├── __init__.py ├── admin.py ├── forms.py ├── migrations │ ├── 0001_initial.py │ └── __init__.py ├── models.py └── tests.py └── setup.py /.gitignore: -------------------------------------------------------------------------------- 1 | custom_form_app.egg-info/* 2 | *.pyc 3 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-craft/custom-form-app/HEAD/README.md -------------------------------------------------------------------------------- /custom_reg_form/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /custom_reg_form/admin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-craft/custom-form-app/HEAD/custom_reg_form/admin.py -------------------------------------------------------------------------------- /custom_reg_form/forms.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-craft/custom-form-app/HEAD/custom_reg_form/forms.py -------------------------------------------------------------------------------- /custom_reg_form/migrations/0001_initial.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-craft/custom-form-app/HEAD/custom_reg_form/migrations/0001_initial.py -------------------------------------------------------------------------------- /custom_reg_form/migrations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /custom_reg_form/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-craft/custom-form-app/HEAD/custom_reg_form/models.py -------------------------------------------------------------------------------- /custom_reg_form/tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-craft/custom-form-app/HEAD/custom_reg_form/tests.py -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-craft/custom-form-app/HEAD/setup.py --------------------------------------------------------------------------------