├── .flake8 ├── .github └── workflows │ ├── pypi.yml │ └── tests.yml ├── .gitignore ├── .readthedocs.yml ├── CHANGELOG.md ├── LICENSE ├── PYPI_README.md ├── README.rst ├── django_prbac ├── __init__.py ├── admin.py ├── arbitrary.py ├── csv.py ├── decorators.py ├── exceptions.py ├── fields.py ├── forms.py ├── migrations │ ├── 0001_initial.py │ └── __init__.py ├── models.py ├── urls.py └── utils.py ├── docs ├── Makefile ├── apidoc │ ├── django_prbac.migrations.rst │ ├── django_prbac.rst │ ├── django_prbac.tests.rst │ └── modules.rst ├── conf.py ├── index.rst ├── make.bat ├── setup.rst └── tutorial.rst ├── pyproject.toml └── tests ├── __init__.py ├── settings.py ├── test_decorators.py ├── test_fields.py ├── test_forms.py └── test_models.py /.flake8: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dimagi/django-prbac/HEAD/.flake8 -------------------------------------------------------------------------------- /.github/workflows/pypi.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dimagi/django-prbac/HEAD/.github/workflows/pypi.yml -------------------------------------------------------------------------------- /.github/workflows/tests.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dimagi/django-prbac/HEAD/.github/workflows/tests.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dimagi/django-prbac/HEAD/.gitignore -------------------------------------------------------------------------------- /.readthedocs.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dimagi/django-prbac/HEAD/.readthedocs.yml -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dimagi/django-prbac/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dimagi/django-prbac/HEAD/LICENSE -------------------------------------------------------------------------------- /PYPI_README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dimagi/django-prbac/HEAD/PYPI_README.md -------------------------------------------------------------------------------- /README.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dimagi/django-prbac/HEAD/README.rst -------------------------------------------------------------------------------- /django_prbac/__init__.py: -------------------------------------------------------------------------------- 1 | __version__ = '1.1.2' 2 | -------------------------------------------------------------------------------- /django_prbac/admin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dimagi/django-prbac/HEAD/django_prbac/admin.py -------------------------------------------------------------------------------- /django_prbac/arbitrary.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dimagi/django-prbac/HEAD/django_prbac/arbitrary.py -------------------------------------------------------------------------------- /django_prbac/csv.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dimagi/django-prbac/HEAD/django_prbac/csv.py -------------------------------------------------------------------------------- /django_prbac/decorators.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dimagi/django-prbac/HEAD/django_prbac/decorators.py -------------------------------------------------------------------------------- /django_prbac/exceptions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dimagi/django-prbac/HEAD/django_prbac/exceptions.py -------------------------------------------------------------------------------- /django_prbac/fields.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dimagi/django-prbac/HEAD/django_prbac/fields.py -------------------------------------------------------------------------------- /django_prbac/forms.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dimagi/django-prbac/HEAD/django_prbac/forms.py -------------------------------------------------------------------------------- /django_prbac/migrations/0001_initial.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dimagi/django-prbac/HEAD/django_prbac/migrations/0001_initial.py -------------------------------------------------------------------------------- /django_prbac/migrations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /django_prbac/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dimagi/django-prbac/HEAD/django_prbac/models.py -------------------------------------------------------------------------------- /django_prbac/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dimagi/django-prbac/HEAD/django_prbac/urls.py -------------------------------------------------------------------------------- /django_prbac/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dimagi/django-prbac/HEAD/django_prbac/utils.py -------------------------------------------------------------------------------- /docs/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dimagi/django-prbac/HEAD/docs/Makefile -------------------------------------------------------------------------------- /docs/apidoc/django_prbac.migrations.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dimagi/django-prbac/HEAD/docs/apidoc/django_prbac.migrations.rst -------------------------------------------------------------------------------- /docs/apidoc/django_prbac.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dimagi/django-prbac/HEAD/docs/apidoc/django_prbac.rst -------------------------------------------------------------------------------- /docs/apidoc/django_prbac.tests.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dimagi/django-prbac/HEAD/docs/apidoc/django_prbac.tests.rst -------------------------------------------------------------------------------- /docs/apidoc/modules.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dimagi/django-prbac/HEAD/docs/apidoc/modules.rst -------------------------------------------------------------------------------- /docs/conf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dimagi/django-prbac/HEAD/docs/conf.py -------------------------------------------------------------------------------- /docs/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dimagi/django-prbac/HEAD/docs/index.rst -------------------------------------------------------------------------------- /docs/make.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dimagi/django-prbac/HEAD/docs/make.bat -------------------------------------------------------------------------------- /docs/setup.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dimagi/django-prbac/HEAD/docs/setup.rst -------------------------------------------------------------------------------- /docs/tutorial.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dimagi/django-prbac/HEAD/docs/tutorial.rst -------------------------------------------------------------------------------- /pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dimagi/django-prbac/HEAD/pyproject.toml -------------------------------------------------------------------------------- /tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/settings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dimagi/django-prbac/HEAD/tests/settings.py -------------------------------------------------------------------------------- /tests/test_decorators.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dimagi/django-prbac/HEAD/tests/test_decorators.py -------------------------------------------------------------------------------- /tests/test_fields.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dimagi/django-prbac/HEAD/tests/test_fields.py -------------------------------------------------------------------------------- /tests/test_forms.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dimagi/django-prbac/HEAD/tests/test_forms.py -------------------------------------------------------------------------------- /tests/test_models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dimagi/django-prbac/HEAD/tests/test_models.py --------------------------------------------------------------------------------