├── .github └── workflows │ ├── codeql.yml │ └── test.yml ├── .gitignore ├── .pre-commit-config.yaml ├── .readthedocs.yaml ├── LICENSE.txt ├── README.md ├── django_view_decorator ├── __about__.py ├── __init__.py ├── app_config.py ├── apps.py ├── conf.py ├── decorators.py ├── management │ └── commands │ │ └── list_views.py ├── urls.py └── urls_utils.py ├── docs ├── Makefile ├── conf.py ├── index.rst ├── make.bat ├── quickstart.rst └── requirements_readthedocs.txt ├── pyproject.toml ├── tests ├── __init__.py ├── app_config_test │ ├── apps.py │ └── views.py ├── manage.py ├── settings.py ├── some_views.py ├── test_app │ ├── __init__.py │ ├── apps.py │ └── views.py ├── test_decorator.py └── urls.py └── uv.lock /.github/workflows/codeql.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/valberg/django-view-decorator/HEAD/.github/workflows/codeql.yml -------------------------------------------------------------------------------- /.github/workflows/test.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/valberg/django-view-decorator/HEAD/.github/workflows/test.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/valberg/django-view-decorator/HEAD/.gitignore -------------------------------------------------------------------------------- /.pre-commit-config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/valberg/django-view-decorator/HEAD/.pre-commit-config.yaml -------------------------------------------------------------------------------- /.readthedocs.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/valberg/django-view-decorator/HEAD/.readthedocs.yaml -------------------------------------------------------------------------------- /LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/valberg/django-view-decorator/HEAD/LICENSE.txt -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/valberg/django-view-decorator/HEAD/README.md -------------------------------------------------------------------------------- /django_view_decorator/__about__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/valberg/django-view-decorator/HEAD/django_view_decorator/__about__.py -------------------------------------------------------------------------------- /django_view_decorator/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/valberg/django-view-decorator/HEAD/django_view_decorator/__init__.py -------------------------------------------------------------------------------- /django_view_decorator/app_config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/valberg/django-view-decorator/HEAD/django_view_decorator/app_config.py -------------------------------------------------------------------------------- /django_view_decorator/apps.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/valberg/django-view-decorator/HEAD/django_view_decorator/apps.py -------------------------------------------------------------------------------- /django_view_decorator/conf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/valberg/django-view-decorator/HEAD/django_view_decorator/conf.py -------------------------------------------------------------------------------- /django_view_decorator/decorators.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/valberg/django-view-decorator/HEAD/django_view_decorator/decorators.py -------------------------------------------------------------------------------- /django_view_decorator/management/commands/list_views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/valberg/django-view-decorator/HEAD/django_view_decorator/management/commands/list_views.py -------------------------------------------------------------------------------- /django_view_decorator/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/valberg/django-view-decorator/HEAD/django_view_decorator/urls.py -------------------------------------------------------------------------------- /django_view_decorator/urls_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/valberg/django-view-decorator/HEAD/django_view_decorator/urls_utils.py -------------------------------------------------------------------------------- /docs/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/valberg/django-view-decorator/HEAD/docs/Makefile -------------------------------------------------------------------------------- /docs/conf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/valberg/django-view-decorator/HEAD/docs/conf.py -------------------------------------------------------------------------------- /docs/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/valberg/django-view-decorator/HEAD/docs/index.rst -------------------------------------------------------------------------------- /docs/make.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/valberg/django-view-decorator/HEAD/docs/make.bat -------------------------------------------------------------------------------- /docs/quickstart.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/valberg/django-view-decorator/HEAD/docs/quickstart.rst -------------------------------------------------------------------------------- /docs/requirements_readthedocs.txt: -------------------------------------------------------------------------------- 1 | sphinx==6.1.3 2 | furo==2022.12.7 3 | -------------------------------------------------------------------------------- /pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/valberg/django-view-decorator/HEAD/pyproject.toml -------------------------------------------------------------------------------- /tests/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/valberg/django-view-decorator/HEAD/tests/__init__.py -------------------------------------------------------------------------------- /tests/app_config_test/apps.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/valberg/django-view-decorator/HEAD/tests/app_config_test/apps.py -------------------------------------------------------------------------------- /tests/app_config_test/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/valberg/django-view-decorator/HEAD/tests/app_config_test/views.py -------------------------------------------------------------------------------- /tests/manage.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/valberg/django-view-decorator/HEAD/tests/manage.py -------------------------------------------------------------------------------- /tests/settings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/valberg/django-view-decorator/HEAD/tests/settings.py -------------------------------------------------------------------------------- /tests/some_views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/valberg/django-view-decorator/HEAD/tests/some_views.py -------------------------------------------------------------------------------- /tests/test_app/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/test_app/apps.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/valberg/django-view-decorator/HEAD/tests/test_app/apps.py -------------------------------------------------------------------------------- /tests/test_app/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/valberg/django-view-decorator/HEAD/tests/test_app/views.py -------------------------------------------------------------------------------- /tests/test_decorator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/valberg/django-view-decorator/HEAD/tests/test_decorator.py -------------------------------------------------------------------------------- /tests/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/valberg/django-view-decorator/HEAD/tests/urls.py -------------------------------------------------------------------------------- /uv.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/valberg/django-view-decorator/HEAD/uv.lock --------------------------------------------------------------------------------