├── .github ├── dependabot.yml └── workflows │ └── ci.yml ├── .gitignore ├── LICENSE ├── MANIFEST.in ├── Makefile ├── README.md ├── docs └── static │ ├── admin-form-1.jpg │ ├── admin-form-editors.jpg │ ├── admin-form-questions.jpg │ └── sample-form-being-completed.jpg ├── example ├── example │ ├── __init__.py │ ├── asgi.py │ ├── settings.py │ ├── urls.py │ └── wsgi.py └── manage.py ├── form_creator ├── __init__.py ├── admin.py ├── apps.py ├── decorators.py ├── exporters.py ├── form_fields.py ├── forms.py ├── managers.py ├── migrations │ ├── 0001_initial.py │ └── __init__.py ├── models.py ├── question_form_fields.py ├── static │ └── form_creator │ │ └── js │ │ └── additional_questions.js ├── templates │ ├── admin │ │ └── form_creator │ │ │ └── form │ │ │ └── change_form.html │ ├── base.html │ └── form_creator │ │ ├── _form_questions_table.html │ │ ├── form_create.html │ │ ├── form_delete.html │ │ ├── form_detail.html │ │ ├── form_edit.html │ │ ├── form_list.html │ │ ├── form_questions_edit.html │ │ └── form_response.html ├── templatetags │ ├── __init__.py │ └── form_creator_tags.py ├── tests │ ├── __init__.py │ ├── test_admin.py │ ├── test_decorators.py │ ├── test_exporters.py │ ├── test_form_fields.py │ ├── test_forms.py │ ├── test_manager.py │ ├── test_models.py │ ├── test_question_form_fields.py │ ├── test_templatetags_form_creator_tags.py │ └── test_views.py ├── urls.py └── views.py ├── pyproject.toml ├── requirements.in ├── requirements.txt ├── runtests.py ├── setup.cfg ├── setup.py └── update_readme_cov.sh /.github/dependabot.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Salaah01/django-form-creator/HEAD/.github/dependabot.yml -------------------------------------------------------------------------------- /.github/workflows/ci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Salaah01/django-form-creator/HEAD/.github/workflows/ci.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Salaah01/django-form-creator/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Salaah01/django-form-creator/HEAD/LICENSE -------------------------------------------------------------------------------- /MANIFEST.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Salaah01/django-form-creator/HEAD/MANIFEST.in -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Salaah01/django-form-creator/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Salaah01/django-form-creator/HEAD/README.md -------------------------------------------------------------------------------- /docs/static/admin-form-1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Salaah01/django-form-creator/HEAD/docs/static/admin-form-1.jpg -------------------------------------------------------------------------------- /docs/static/admin-form-editors.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Salaah01/django-form-creator/HEAD/docs/static/admin-form-editors.jpg -------------------------------------------------------------------------------- /docs/static/admin-form-questions.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Salaah01/django-form-creator/HEAD/docs/static/admin-form-questions.jpg -------------------------------------------------------------------------------- /docs/static/sample-form-being-completed.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Salaah01/django-form-creator/HEAD/docs/static/sample-form-being-completed.jpg -------------------------------------------------------------------------------- /example/example/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /example/example/asgi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Salaah01/django-form-creator/HEAD/example/example/asgi.py -------------------------------------------------------------------------------- /example/example/settings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Salaah01/django-form-creator/HEAD/example/example/settings.py -------------------------------------------------------------------------------- /example/example/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Salaah01/django-form-creator/HEAD/example/example/urls.py -------------------------------------------------------------------------------- /example/example/wsgi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Salaah01/django-form-creator/HEAD/example/example/wsgi.py -------------------------------------------------------------------------------- /example/manage.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Salaah01/django-form-creator/HEAD/example/manage.py -------------------------------------------------------------------------------- /form_creator/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /form_creator/admin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Salaah01/django-form-creator/HEAD/form_creator/admin.py -------------------------------------------------------------------------------- /form_creator/apps.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Salaah01/django-form-creator/HEAD/form_creator/apps.py -------------------------------------------------------------------------------- /form_creator/decorators.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Salaah01/django-form-creator/HEAD/form_creator/decorators.py -------------------------------------------------------------------------------- /form_creator/exporters.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Salaah01/django-form-creator/HEAD/form_creator/exporters.py -------------------------------------------------------------------------------- /form_creator/form_fields.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Salaah01/django-form-creator/HEAD/form_creator/form_fields.py -------------------------------------------------------------------------------- /form_creator/forms.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Salaah01/django-form-creator/HEAD/form_creator/forms.py -------------------------------------------------------------------------------- /form_creator/managers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Salaah01/django-form-creator/HEAD/form_creator/managers.py -------------------------------------------------------------------------------- /form_creator/migrations/0001_initial.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Salaah01/django-form-creator/HEAD/form_creator/migrations/0001_initial.py -------------------------------------------------------------------------------- /form_creator/migrations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /form_creator/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Salaah01/django-form-creator/HEAD/form_creator/models.py -------------------------------------------------------------------------------- /form_creator/question_form_fields.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Salaah01/django-form-creator/HEAD/form_creator/question_form_fields.py -------------------------------------------------------------------------------- /form_creator/static/form_creator/js/additional_questions.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Salaah01/django-form-creator/HEAD/form_creator/static/form_creator/js/additional_questions.js -------------------------------------------------------------------------------- /form_creator/templates/admin/form_creator/form/change_form.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Salaah01/django-form-creator/HEAD/form_creator/templates/admin/form_creator/form/change_form.html -------------------------------------------------------------------------------- /form_creator/templates/base.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Salaah01/django-form-creator/HEAD/form_creator/templates/base.html -------------------------------------------------------------------------------- /form_creator/templates/form_creator/_form_questions_table.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Salaah01/django-form-creator/HEAD/form_creator/templates/form_creator/_form_questions_table.html -------------------------------------------------------------------------------- /form_creator/templates/form_creator/form_create.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Salaah01/django-form-creator/HEAD/form_creator/templates/form_creator/form_create.html -------------------------------------------------------------------------------- /form_creator/templates/form_creator/form_delete.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Salaah01/django-form-creator/HEAD/form_creator/templates/form_creator/form_delete.html -------------------------------------------------------------------------------- /form_creator/templates/form_creator/form_detail.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Salaah01/django-form-creator/HEAD/form_creator/templates/form_creator/form_detail.html -------------------------------------------------------------------------------- /form_creator/templates/form_creator/form_edit.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Salaah01/django-form-creator/HEAD/form_creator/templates/form_creator/form_edit.html -------------------------------------------------------------------------------- /form_creator/templates/form_creator/form_list.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Salaah01/django-form-creator/HEAD/form_creator/templates/form_creator/form_list.html -------------------------------------------------------------------------------- /form_creator/templates/form_creator/form_questions_edit.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Salaah01/django-form-creator/HEAD/form_creator/templates/form_creator/form_questions_edit.html -------------------------------------------------------------------------------- /form_creator/templates/form_creator/form_response.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Salaah01/django-form-creator/HEAD/form_creator/templates/form_creator/form_response.html -------------------------------------------------------------------------------- /form_creator/templatetags/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /form_creator/templatetags/form_creator_tags.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Salaah01/django-form-creator/HEAD/form_creator/templatetags/form_creator_tags.py -------------------------------------------------------------------------------- /form_creator/tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /form_creator/tests/test_admin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Salaah01/django-form-creator/HEAD/form_creator/tests/test_admin.py -------------------------------------------------------------------------------- /form_creator/tests/test_decorators.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Salaah01/django-form-creator/HEAD/form_creator/tests/test_decorators.py -------------------------------------------------------------------------------- /form_creator/tests/test_exporters.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Salaah01/django-form-creator/HEAD/form_creator/tests/test_exporters.py -------------------------------------------------------------------------------- /form_creator/tests/test_form_fields.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Salaah01/django-form-creator/HEAD/form_creator/tests/test_form_fields.py -------------------------------------------------------------------------------- /form_creator/tests/test_forms.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Salaah01/django-form-creator/HEAD/form_creator/tests/test_forms.py -------------------------------------------------------------------------------- /form_creator/tests/test_manager.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Salaah01/django-form-creator/HEAD/form_creator/tests/test_manager.py -------------------------------------------------------------------------------- /form_creator/tests/test_models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Salaah01/django-form-creator/HEAD/form_creator/tests/test_models.py -------------------------------------------------------------------------------- /form_creator/tests/test_question_form_fields.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Salaah01/django-form-creator/HEAD/form_creator/tests/test_question_form_fields.py -------------------------------------------------------------------------------- /form_creator/tests/test_templatetags_form_creator_tags.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Salaah01/django-form-creator/HEAD/form_creator/tests/test_templatetags_form_creator_tags.py -------------------------------------------------------------------------------- /form_creator/tests/test_views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Salaah01/django-form-creator/HEAD/form_creator/tests/test_views.py -------------------------------------------------------------------------------- /form_creator/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Salaah01/django-form-creator/HEAD/form_creator/urls.py -------------------------------------------------------------------------------- /form_creator/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Salaah01/django-form-creator/HEAD/form_creator/views.py -------------------------------------------------------------------------------- /pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Salaah01/django-form-creator/HEAD/pyproject.toml -------------------------------------------------------------------------------- /requirements.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Salaah01/django-form-creator/HEAD/requirements.in -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Salaah01/django-form-creator/HEAD/requirements.txt -------------------------------------------------------------------------------- /runtests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Salaah01/django-form-creator/HEAD/runtests.py -------------------------------------------------------------------------------- /setup.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Salaah01/django-form-creator/HEAD/setup.cfg -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Salaah01/django-form-creator/HEAD/setup.py -------------------------------------------------------------------------------- /update_readme_cov.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Salaah01/django-form-creator/HEAD/update_readme_cov.sh --------------------------------------------------------------------------------