{"id":16945640,"url":"https://github.com/markush/django-dynamic-forms","last_synced_at":"2025-04-09T07:09:43.400Z","repository":{"id":10647378,"uuid":"12875910","full_name":"MarkusH/django-dynamic-forms","owner":"MarkusH","description":"django-dynamic-forms is a reusable Django application to create and configure forms through the admin.","archived":false,"fork":false,"pushed_at":"2019-04-13T09:43:42.000Z","size":256,"stargazers_count":156,"open_issues_count":12,"forks_count":39,"subscribers_count":12,"default_branch":"master","last_synced_at":"2025-04-02T05:07:36.215Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":"https://django-dynamic-forms.readthedocs.org","language":"Python","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"bsd-3-clause","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/MarkusH.png","metadata":{"files":{"readme":"README.rst","changelog":null,"contributing":null,"funding":null,"license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null}},"created_at":"2013-09-16T19:02:40.000Z","updated_at":"2025-01-14T05:26:35.000Z","dependencies_parsed_at":"2022-09-26T20:41:30.143Z","dependency_job_id":null,"html_url":"https://github.com/MarkusH/django-dynamic-forms","commit_stats":null,"previous_names":[],"tags_count":13,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/MarkusH%2Fdjango-dynamic-forms","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/MarkusH%2Fdjango-dynamic-forms/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/MarkusH%2Fdjango-dynamic-forms/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/MarkusH%2Fdjango-dynamic-forms/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/MarkusH","download_url":"https://codeload.github.com/MarkusH/django-dynamic-forms/tar.gz/refs/heads/master","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":247994122,"owners_count":21030050,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":[],"created_at":"2024-10-13T21:23:13.809Z","updated_at":"2025-04-09T07:09:43.384Z","avatar_url":"https://github.com/MarkusH.png","language":"Python","readme":"===================\nDjango Dynamic Form\n===================\n\n.. image:: http://unmaintained.tech/badge.svg\n   :target: http://unmaintained.tech/\n   :alt: No Maintenance Intended \n\n.. image:: https://img.shields.io/pypi/v/django-dynamic-forms.svg\n   :target: https://pypi.python.org/pypi/django-dynamic-forms\n\n.. image:: https://img.shields.io/pypi/l/django-dynamic-forms.svg\n   :target: https://pypi.python.org/pypi/django-dynamic-forms\n\n.. image:: https://img.shields.io/pypi/dm/django-dynamic-forms.svg\n   :target: https://pypi.python.org/pypi/django-dynamic-forms\n\n.. image:: https://img.shields.io/travis/MarkusH/django-dynamic-forms/master.svg\n   :target: https://travis-ci.org/MarkusH/django-dynamic-forms\n\n.. image:: https://img.shields.io/codecov/c/github/MarkusH/django-dynamic-forms/master.svg\n   :target: https://codecov.io/github/MarkusH/django-dynamic-forms\n\n\n**django-dynamic-forms** lets you create your forms through the Django admin.\nYou can add and remove form fields as you need them. That makes it perfect\nfor creating survey or application forms.\n\nDocumentation: https://django-dynamic-forms.readthedocs.org/\n\n\nINSTALLATION\n============\n\nAdd ``'dynamic_forms.apps.DynamicFormsConfig'`` to the ``INSTALLED_APPS``::\n\n    INSTALLED_APPS = (\n        ...\n        'dynamic_forms.apps.DynamicFormsConfig',\n        ...\n    )\n\nAdd ``'dynamic_forms.middlewares.FormModelMiddleware'`` to the\n``MIDDLEWARE_CLASSES`` (probably at the end)::\n\n    MIDDLEWARE_CLASSES = (\n        ...\n        'dynamic_forms.middlewares.FormModelMiddleware'\n    )\n\nAdd ``'dynamic_forms.urls'`` to the URL patterns::\n\n    urlpatterns = patterns('',\n        ...\n        url(r'^dynamic_forms/',\n            include('dynamic_forms.urls', namespace='dynamic_forms')),\n        ...\n    )\n\n.. important::\n\n   Make sure that you get the namespace straight: ``dynamic_forms``!\n\n\nYou can set ``DYNAMIC_FORMS_EMAIL_RECIPIENTS`` in your settings to a list of\ne-mail addresses. Forms being send via e-mail will then be send to those\naddresses instead of those defined in ``settings.ADMINS``. Each recipient will\nsee *all* other recipients. See `send_mail\n\u003chttps://docs.djangoproject.com/en/stable/topics/email/#django.core.mail.send_mail\u003e`_\nin the officiall documentation.\n\n\nExample\n=======\n\n1. Change into the ``example/`` directory\n2. Apply all migrations: ``python manage.py migrate``\n3. Create a superuser (if not asked before): ``python manage.py createsuperuser``\n4. Run ``python manage.py runserver``\n\nThe *admin* is available at http://127.0.0.1:8000/admin/.\n\nYou can find an example form at http://127.0.0.1:8000/example-form/.\n\n\nRunning the tests\n=================\n\n1. Make sure to install tox: ``$ pip install tox``\n2. Run ``tox``\n","funding_links":[],"categories":[],"sub_categories":[],"project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fmarkush%2Fdjango-dynamic-forms","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fmarkush%2Fdjango-dynamic-forms","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fmarkush%2Fdjango-dynamic-forms/lists"}