├── .coveragerc ├── .github └── workflows │ └── python-package.yml ├── .gitignore ├── AUTHORS ├── CHANGELOG ├── CONTRIBUTING ├── INSTALL ├── LICENSE ├── MANIFEST.in ├── README.rst ├── demo ├── Dockerfile ├── README.rst ├── db.sqlite3 ├── demo │ ├── __init__.py │ ├── apps.py │ ├── middleware.py │ ├── migrations │ │ ├── 0001_initial.py │ │ ├── 0002_auto_20200518_1024.py │ │ ├── 0003_auto_20200519_1228.py │ │ └── __init__.py │ ├── models.py │ ├── templates │ │ ├── _base.html │ │ ├── _head_bootstrap4.html │ │ ├── _head_bootstrap5.html │ │ ├── _head_none.html │ │ ├── demo_nav.html │ │ ├── index.html │ │ ├── index_bootstrap4.html │ │ ├── index_bootstrap5.html │ │ └── index_none.html │ ├── urls.py │ ├── utils.py │ └── views.py ├── docker-compose.yml ├── manage.py ├── requirements.txt └── settings │ ├── __init__.py │ ├── settings.py │ ├── urls.py │ └── wsgi.py ├── docs ├── Makefile ├── build │ └── empty ├── requirements.txt └── source │ ├── _static │ └── empty │ ├── _templates │ └── empty │ ├── advanced.rst │ ├── bs4.rst │ ├── bs5.rst │ ├── conf.py │ ├── filtering.rst │ ├── index.rst │ ├── quickstart.rst │ └── rst_guide.rst ├── pytest.ini ├── setup.cfg ├── setup.py ├── siteforms ├── __init__.py ├── apps.py ├── base.py ├── composers │ ├── __init__.py │ ├── base.py │ ├── bootstrap4.py │ └── bootstrap5.py ├── fields.py ├── formsets.py ├── locale │ ├── en │ │ └── LC_MESSAGES │ │ │ └── django.po │ └── ru │ │ └── LC_MESSAGES │ │ ├── django.mo │ │ └── django.po ├── metas.py ├── tests │ ├── __init__.py │ ├── conftest.py │ ├── datafixtures │ │ ├── bs4_basic_1.html │ │ ├── bs5_basic_1.html │ │ └── nocss_basic_1.html │ ├── test_bootstrap4.py │ ├── test_bootstrap5.py │ ├── test_common.py │ ├── test_filtering.py │ ├── test_nocss.py │ ├── test_widgets.py │ └── testapp │ │ ├── __init__.py │ │ ├── models.py │ │ └── templates │ │ └── mywidget.html ├── toolbox.py ├── utils.py └── widgets.py └── tox.ini /.coveragerc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idlesign/django-siteforms/HEAD/.coveragerc -------------------------------------------------------------------------------- /.github/workflows/python-package.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idlesign/django-siteforms/HEAD/.github/workflows/python-package.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idlesign/django-siteforms/HEAD/.gitignore -------------------------------------------------------------------------------- /AUTHORS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idlesign/django-siteforms/HEAD/AUTHORS -------------------------------------------------------------------------------- /CHANGELOG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idlesign/django-siteforms/HEAD/CHANGELOG -------------------------------------------------------------------------------- /CONTRIBUTING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idlesign/django-siteforms/HEAD/CONTRIBUTING -------------------------------------------------------------------------------- /INSTALL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idlesign/django-siteforms/HEAD/INSTALL -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idlesign/django-siteforms/HEAD/LICENSE -------------------------------------------------------------------------------- /MANIFEST.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idlesign/django-siteforms/HEAD/MANIFEST.in -------------------------------------------------------------------------------- /README.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idlesign/django-siteforms/HEAD/README.rst -------------------------------------------------------------------------------- /demo/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idlesign/django-siteforms/HEAD/demo/Dockerfile -------------------------------------------------------------------------------- /demo/README.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idlesign/django-siteforms/HEAD/demo/README.rst -------------------------------------------------------------------------------- /demo/db.sqlite3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idlesign/django-siteforms/HEAD/demo/db.sqlite3 -------------------------------------------------------------------------------- /demo/demo/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /demo/demo/apps.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idlesign/django-siteforms/HEAD/demo/demo/apps.py -------------------------------------------------------------------------------- /demo/demo/middleware.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idlesign/django-siteforms/HEAD/demo/demo/middleware.py -------------------------------------------------------------------------------- /demo/demo/migrations/0001_initial.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idlesign/django-siteforms/HEAD/demo/demo/migrations/0001_initial.py -------------------------------------------------------------------------------- /demo/demo/migrations/0002_auto_20200518_1024.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idlesign/django-siteforms/HEAD/demo/demo/migrations/0002_auto_20200518_1024.py -------------------------------------------------------------------------------- /demo/demo/migrations/0003_auto_20200519_1228.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idlesign/django-siteforms/HEAD/demo/demo/migrations/0003_auto_20200519_1228.py -------------------------------------------------------------------------------- /demo/demo/migrations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /demo/demo/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idlesign/django-siteforms/HEAD/demo/demo/models.py -------------------------------------------------------------------------------- /demo/demo/templates/_base.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idlesign/django-siteforms/HEAD/demo/demo/templates/_base.html -------------------------------------------------------------------------------- /demo/demo/templates/_head_bootstrap4.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idlesign/django-siteforms/HEAD/demo/demo/templates/_head_bootstrap4.html -------------------------------------------------------------------------------- /demo/demo/templates/_head_bootstrap5.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idlesign/django-siteforms/HEAD/demo/demo/templates/_head_bootstrap5.html -------------------------------------------------------------------------------- /demo/demo/templates/_head_none.html: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /demo/demo/templates/demo_nav.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idlesign/django-siteforms/HEAD/demo/demo/templates/demo_nav.html -------------------------------------------------------------------------------- /demo/demo/templates/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idlesign/django-siteforms/HEAD/demo/demo/templates/index.html -------------------------------------------------------------------------------- /demo/demo/templates/index_bootstrap4.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idlesign/django-siteforms/HEAD/demo/demo/templates/index_bootstrap4.html -------------------------------------------------------------------------------- /demo/demo/templates/index_bootstrap5.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idlesign/django-siteforms/HEAD/demo/demo/templates/index_bootstrap5.html -------------------------------------------------------------------------------- /demo/demo/templates/index_none.html: -------------------------------------------------------------------------------- 1 | 2 | {{ form1 }} 3 | -------------------------------------------------------------------------------- /demo/demo/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idlesign/django-siteforms/HEAD/demo/demo/urls.py -------------------------------------------------------------------------------- /demo/demo/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idlesign/django-siteforms/HEAD/demo/demo/utils.py -------------------------------------------------------------------------------- /demo/demo/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idlesign/django-siteforms/HEAD/demo/demo/views.py -------------------------------------------------------------------------------- /demo/docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idlesign/django-siteforms/HEAD/demo/docker-compose.yml -------------------------------------------------------------------------------- /demo/manage.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idlesign/django-siteforms/HEAD/demo/manage.py -------------------------------------------------------------------------------- /demo/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idlesign/django-siteforms/HEAD/demo/requirements.txt -------------------------------------------------------------------------------- /demo/settings/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /demo/settings/settings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idlesign/django-siteforms/HEAD/demo/settings/settings.py -------------------------------------------------------------------------------- /demo/settings/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idlesign/django-siteforms/HEAD/demo/settings/urls.py -------------------------------------------------------------------------------- /demo/settings/wsgi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idlesign/django-siteforms/HEAD/demo/settings/wsgi.py -------------------------------------------------------------------------------- /docs/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idlesign/django-siteforms/HEAD/docs/Makefile -------------------------------------------------------------------------------- /docs/build/empty: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /docs/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idlesign/django-siteforms/HEAD/docs/requirements.txt -------------------------------------------------------------------------------- /docs/source/_static/empty: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /docs/source/_templates/empty: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /docs/source/advanced.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idlesign/django-siteforms/HEAD/docs/source/advanced.rst -------------------------------------------------------------------------------- /docs/source/bs4.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idlesign/django-siteforms/HEAD/docs/source/bs4.rst -------------------------------------------------------------------------------- /docs/source/bs5.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idlesign/django-siteforms/HEAD/docs/source/bs5.rst -------------------------------------------------------------------------------- /docs/source/conf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idlesign/django-siteforms/HEAD/docs/source/conf.py -------------------------------------------------------------------------------- /docs/source/filtering.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idlesign/django-siteforms/HEAD/docs/source/filtering.rst -------------------------------------------------------------------------------- /docs/source/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idlesign/django-siteforms/HEAD/docs/source/index.rst -------------------------------------------------------------------------------- /docs/source/quickstart.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idlesign/django-siteforms/HEAD/docs/source/quickstart.rst -------------------------------------------------------------------------------- /docs/source/rst_guide.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idlesign/django-siteforms/HEAD/docs/source/rst_guide.rst -------------------------------------------------------------------------------- /pytest.ini: -------------------------------------------------------------------------------- 1 | [pytest] 2 | addopts = --pyargs 3 | -------------------------------------------------------------------------------- /setup.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idlesign/django-siteforms/HEAD/setup.cfg -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idlesign/django-siteforms/HEAD/setup.py -------------------------------------------------------------------------------- /siteforms/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idlesign/django-siteforms/HEAD/siteforms/__init__.py -------------------------------------------------------------------------------- /siteforms/apps.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idlesign/django-siteforms/HEAD/siteforms/apps.py -------------------------------------------------------------------------------- /siteforms/base.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idlesign/django-siteforms/HEAD/siteforms/base.py -------------------------------------------------------------------------------- /siteforms/composers/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /siteforms/composers/base.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idlesign/django-siteforms/HEAD/siteforms/composers/base.py -------------------------------------------------------------------------------- /siteforms/composers/bootstrap4.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idlesign/django-siteforms/HEAD/siteforms/composers/bootstrap4.py -------------------------------------------------------------------------------- /siteforms/composers/bootstrap5.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idlesign/django-siteforms/HEAD/siteforms/composers/bootstrap5.py -------------------------------------------------------------------------------- /siteforms/fields.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idlesign/django-siteforms/HEAD/siteforms/fields.py -------------------------------------------------------------------------------- /siteforms/formsets.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idlesign/django-siteforms/HEAD/siteforms/formsets.py -------------------------------------------------------------------------------- /siteforms/locale/en/LC_MESSAGES/django.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idlesign/django-siteforms/HEAD/siteforms/locale/en/LC_MESSAGES/django.po -------------------------------------------------------------------------------- /siteforms/locale/ru/LC_MESSAGES/django.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idlesign/django-siteforms/HEAD/siteforms/locale/ru/LC_MESSAGES/django.mo -------------------------------------------------------------------------------- /siteforms/locale/ru/LC_MESSAGES/django.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idlesign/django-siteforms/HEAD/siteforms/locale/ru/LC_MESSAGES/django.po -------------------------------------------------------------------------------- /siteforms/metas.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idlesign/django-siteforms/HEAD/siteforms/metas.py -------------------------------------------------------------------------------- /siteforms/tests/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idlesign/django-siteforms/HEAD/siteforms/tests/__init__.py -------------------------------------------------------------------------------- /siteforms/tests/conftest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idlesign/django-siteforms/HEAD/siteforms/tests/conftest.py -------------------------------------------------------------------------------- /siteforms/tests/datafixtures/bs4_basic_1.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idlesign/django-siteforms/HEAD/siteforms/tests/datafixtures/bs4_basic_1.html -------------------------------------------------------------------------------- /siteforms/tests/datafixtures/bs5_basic_1.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idlesign/django-siteforms/HEAD/siteforms/tests/datafixtures/bs5_basic_1.html -------------------------------------------------------------------------------- /siteforms/tests/datafixtures/nocss_basic_1.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idlesign/django-siteforms/HEAD/siteforms/tests/datafixtures/nocss_basic_1.html -------------------------------------------------------------------------------- /siteforms/tests/test_bootstrap4.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idlesign/django-siteforms/HEAD/siteforms/tests/test_bootstrap4.py -------------------------------------------------------------------------------- /siteforms/tests/test_bootstrap5.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idlesign/django-siteforms/HEAD/siteforms/tests/test_bootstrap5.py -------------------------------------------------------------------------------- /siteforms/tests/test_common.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idlesign/django-siteforms/HEAD/siteforms/tests/test_common.py -------------------------------------------------------------------------------- /siteforms/tests/test_filtering.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idlesign/django-siteforms/HEAD/siteforms/tests/test_filtering.py -------------------------------------------------------------------------------- /siteforms/tests/test_nocss.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idlesign/django-siteforms/HEAD/siteforms/tests/test_nocss.py -------------------------------------------------------------------------------- /siteforms/tests/test_widgets.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idlesign/django-siteforms/HEAD/siteforms/tests/test_widgets.py -------------------------------------------------------------------------------- /siteforms/tests/testapp/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /siteforms/tests/testapp/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idlesign/django-siteforms/HEAD/siteforms/tests/testapp/models.py -------------------------------------------------------------------------------- /siteforms/tests/testapp/templates/mywidget.html: -------------------------------------------------------------------------------- 1 | mywidgetdata 2 | -------------------------------------------------------------------------------- /siteforms/toolbox.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idlesign/django-siteforms/HEAD/siteforms/toolbox.py -------------------------------------------------------------------------------- /siteforms/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idlesign/django-siteforms/HEAD/siteforms/utils.py -------------------------------------------------------------------------------- /siteforms/widgets.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idlesign/django-siteforms/HEAD/siteforms/widgets.py -------------------------------------------------------------------------------- /tox.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idlesign/django-siteforms/HEAD/tox.ini --------------------------------------------------------------------------------