├── .coveragerc ├── .github ├── FUNDING.yml └── workflows │ └── ci.yml ├── .gitignore ├── CONTRIBUTORS.txt ├── LICENSE ├── MANIFEST.in ├── README.md ├── braces ├── __init__.py ├── forms.py └── views │ ├── __init__.py │ ├── _access.py │ ├── _ajax.py │ ├── _forms.py │ ├── _other.py │ └── _queries.py ├── codecov.yml ├── conftest.py ├── docs ├── Makefile ├── access.rst ├── changelog.rst ├── conf.py ├── contributing.rst ├── form.rst ├── index.rst └── other.rst ├── pyproject.toml ├── requirements-docs.txt ├── requirements.txt ├── setup.cfg ├── setup.py └── tests ├── __init__.py ├── backends.py ├── factories.py ├── forms.py ├── helpers.py ├── models.py ├── settings.py ├── templates ├── 404.html ├── blank.html └── form.html ├── test_access_mixins.py ├── test_ajax_mixins.py ├── test_forms.py ├── test_other_mixins.py ├── test_queries.py ├── urls.py ├── urls_namespaced.py └── views.py /.coveragerc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brack3t/django-braces/HEAD/.coveragerc -------------------------------------------------------------------------------- /.github/FUNDING.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brack3t/django-braces/HEAD/.github/FUNDING.yml -------------------------------------------------------------------------------- /.github/workflows/ci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brack3t/django-braces/HEAD/.github/workflows/ci.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brack3t/django-braces/HEAD/.gitignore -------------------------------------------------------------------------------- /CONTRIBUTORS.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brack3t/django-braces/HEAD/CONTRIBUTORS.txt -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brack3t/django-braces/HEAD/LICENSE -------------------------------------------------------------------------------- /MANIFEST.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brack3t/django-braces/HEAD/MANIFEST.in -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brack3t/django-braces/HEAD/README.md -------------------------------------------------------------------------------- /braces/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brack3t/django-braces/HEAD/braces/__init__.py -------------------------------------------------------------------------------- /braces/forms.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brack3t/django-braces/HEAD/braces/forms.py -------------------------------------------------------------------------------- /braces/views/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brack3t/django-braces/HEAD/braces/views/__init__.py -------------------------------------------------------------------------------- /braces/views/_access.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brack3t/django-braces/HEAD/braces/views/_access.py -------------------------------------------------------------------------------- /braces/views/_ajax.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brack3t/django-braces/HEAD/braces/views/_ajax.py -------------------------------------------------------------------------------- /braces/views/_forms.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brack3t/django-braces/HEAD/braces/views/_forms.py -------------------------------------------------------------------------------- /braces/views/_other.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brack3t/django-braces/HEAD/braces/views/_other.py -------------------------------------------------------------------------------- /braces/views/_queries.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brack3t/django-braces/HEAD/braces/views/_queries.py -------------------------------------------------------------------------------- /codecov.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brack3t/django-braces/HEAD/codecov.yml -------------------------------------------------------------------------------- /conftest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brack3t/django-braces/HEAD/conftest.py -------------------------------------------------------------------------------- /docs/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brack3t/django-braces/HEAD/docs/Makefile -------------------------------------------------------------------------------- /docs/access.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brack3t/django-braces/HEAD/docs/access.rst -------------------------------------------------------------------------------- /docs/changelog.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brack3t/django-braces/HEAD/docs/changelog.rst -------------------------------------------------------------------------------- /docs/conf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brack3t/django-braces/HEAD/docs/conf.py -------------------------------------------------------------------------------- /docs/contributing.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brack3t/django-braces/HEAD/docs/contributing.rst -------------------------------------------------------------------------------- /docs/form.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brack3t/django-braces/HEAD/docs/form.rst -------------------------------------------------------------------------------- /docs/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brack3t/django-braces/HEAD/docs/index.rst -------------------------------------------------------------------------------- /docs/other.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brack3t/django-braces/HEAD/docs/other.rst -------------------------------------------------------------------------------- /pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brack3t/django-braces/HEAD/pyproject.toml -------------------------------------------------------------------------------- /requirements-docs.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brack3t/django-braces/HEAD/requirements-docs.txt -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brack3t/django-braces/HEAD/requirements.txt -------------------------------------------------------------------------------- /setup.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brack3t/django-braces/HEAD/setup.cfg -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brack3t/django-braces/HEAD/setup.py -------------------------------------------------------------------------------- /tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/backends.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brack3t/django-braces/HEAD/tests/backends.py -------------------------------------------------------------------------------- /tests/factories.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brack3t/django-braces/HEAD/tests/factories.py -------------------------------------------------------------------------------- /tests/forms.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brack3t/django-braces/HEAD/tests/forms.py -------------------------------------------------------------------------------- /tests/helpers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brack3t/django-braces/HEAD/tests/helpers.py -------------------------------------------------------------------------------- /tests/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brack3t/django-braces/HEAD/tests/models.py -------------------------------------------------------------------------------- /tests/settings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brack3t/django-braces/HEAD/tests/settings.py -------------------------------------------------------------------------------- /tests/templates/404.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brack3t/django-braces/HEAD/tests/templates/404.html -------------------------------------------------------------------------------- /tests/templates/blank.html: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/templates/form.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brack3t/django-braces/HEAD/tests/templates/form.html -------------------------------------------------------------------------------- /tests/test_access_mixins.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brack3t/django-braces/HEAD/tests/test_access_mixins.py -------------------------------------------------------------------------------- /tests/test_ajax_mixins.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brack3t/django-braces/HEAD/tests/test_ajax_mixins.py -------------------------------------------------------------------------------- /tests/test_forms.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brack3t/django-braces/HEAD/tests/test_forms.py -------------------------------------------------------------------------------- /tests/test_other_mixins.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brack3t/django-braces/HEAD/tests/test_other_mixins.py -------------------------------------------------------------------------------- /tests/test_queries.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brack3t/django-braces/HEAD/tests/test_queries.py -------------------------------------------------------------------------------- /tests/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brack3t/django-braces/HEAD/tests/urls.py -------------------------------------------------------------------------------- /tests/urls_namespaced.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brack3t/django-braces/HEAD/tests/urls_namespaced.py -------------------------------------------------------------------------------- /tests/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brack3t/django-braces/HEAD/tests/views.py --------------------------------------------------------------------------------