├── .pre-commit-config.yaml ├── .travis.yml ├── CHANGELOG.rst ├── LICENSE ├── MANIFEST.in ├── README.rst ├── demo_proj ├── demo_app │ ├── __init__.py │ ├── admin.py │ ├── apps.py │ ├── locale │ │ └── ar │ │ │ └── LC_MESSAGES │ │ │ ├── django.mo │ │ │ └── django.po │ ├── migrations │ │ ├── 0001_initial.py │ │ ├── 0002_auto_20211209_2305.py │ │ ├── 0003_auto_20211209_2306.py │ │ └── __init__.py │ ├── models.py │ ├── tests.py │ └── views.py ├── demo_proj │ ├── __init__.py │ ├── settings.py │ ├── urls.py │ └── wsgi.py └── manage.py ├── setup.py ├── tabular_permissions ├── __init__.py ├── admin.py ├── app_settings.py ├── helpers.py ├── locale │ └── ar │ │ └── LC_MESSAGES │ │ ├── django.mo │ │ └── django.po ├── static │ └── tabular_permissions │ │ └── tabular_permissions.js ├── templates │ └── tabular_permissions │ │ └── admin │ │ └── tabular_permissions.html └── widgets.py └── tests ├── __init__.py ├── custom_models ├── __init__.py ├── admin.py ├── apps.py ├── migrations │ └── __init__.py ├── models.py ├── tests.py └── views.py ├── manage.py ├── requirements.txt ├── runtests.py ├── test_settings.py ├── test_tabular_permissions ├── __init__.py └── tests.py └── urls.py /.pre-commit-config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RamezIssac/django-tabular-permissions/HEAD/.pre-commit-config.yaml -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RamezIssac/django-tabular-permissions/HEAD/.travis.yml -------------------------------------------------------------------------------- /CHANGELOG.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RamezIssac/django-tabular-permissions/HEAD/CHANGELOG.rst -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RamezIssac/django-tabular-permissions/HEAD/LICENSE -------------------------------------------------------------------------------- /MANIFEST.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RamezIssac/django-tabular-permissions/HEAD/MANIFEST.in -------------------------------------------------------------------------------- /README.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RamezIssac/django-tabular-permissions/HEAD/README.rst -------------------------------------------------------------------------------- /demo_proj/demo_app/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /demo_proj/demo_app/admin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RamezIssac/django-tabular-permissions/HEAD/demo_proj/demo_app/admin.py -------------------------------------------------------------------------------- /demo_proj/demo_app/apps.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RamezIssac/django-tabular-permissions/HEAD/demo_proj/demo_app/apps.py -------------------------------------------------------------------------------- /demo_proj/demo_app/locale/ar/LC_MESSAGES/django.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RamezIssac/django-tabular-permissions/HEAD/demo_proj/demo_app/locale/ar/LC_MESSAGES/django.mo -------------------------------------------------------------------------------- /demo_proj/demo_app/locale/ar/LC_MESSAGES/django.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RamezIssac/django-tabular-permissions/HEAD/demo_proj/demo_app/locale/ar/LC_MESSAGES/django.po -------------------------------------------------------------------------------- /demo_proj/demo_app/migrations/0001_initial.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RamezIssac/django-tabular-permissions/HEAD/demo_proj/demo_app/migrations/0001_initial.py -------------------------------------------------------------------------------- /demo_proj/demo_app/migrations/0002_auto_20211209_2305.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RamezIssac/django-tabular-permissions/HEAD/demo_proj/demo_app/migrations/0002_auto_20211209_2305.py -------------------------------------------------------------------------------- /demo_proj/demo_app/migrations/0003_auto_20211209_2306.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RamezIssac/django-tabular-permissions/HEAD/demo_proj/demo_app/migrations/0003_auto_20211209_2306.py -------------------------------------------------------------------------------- /demo_proj/demo_app/migrations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /demo_proj/demo_app/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RamezIssac/django-tabular-permissions/HEAD/demo_proj/demo_app/models.py -------------------------------------------------------------------------------- /demo_proj/demo_app/tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RamezIssac/django-tabular-permissions/HEAD/demo_proj/demo_app/tests.py -------------------------------------------------------------------------------- /demo_proj/demo_app/views.py: -------------------------------------------------------------------------------- 1 | from django.shortcuts import render 2 | 3 | # Create your views here. 4 | -------------------------------------------------------------------------------- /demo_proj/demo_proj/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /demo_proj/demo_proj/settings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RamezIssac/django-tabular-permissions/HEAD/demo_proj/demo_proj/settings.py -------------------------------------------------------------------------------- /demo_proj/demo_proj/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RamezIssac/django-tabular-permissions/HEAD/demo_proj/demo_proj/urls.py -------------------------------------------------------------------------------- /demo_proj/demo_proj/wsgi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RamezIssac/django-tabular-permissions/HEAD/demo_proj/demo_proj/wsgi.py -------------------------------------------------------------------------------- /demo_proj/manage.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RamezIssac/django-tabular-permissions/HEAD/demo_proj/manage.py -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RamezIssac/django-tabular-permissions/HEAD/setup.py -------------------------------------------------------------------------------- /tabular_permissions/__init__.py: -------------------------------------------------------------------------------- 1 | __version__ = '2.9.3' 2 | -------------------------------------------------------------------------------- /tabular_permissions/admin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RamezIssac/django-tabular-permissions/HEAD/tabular_permissions/admin.py -------------------------------------------------------------------------------- /tabular_permissions/app_settings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RamezIssac/django-tabular-permissions/HEAD/tabular_permissions/app_settings.py -------------------------------------------------------------------------------- /tabular_permissions/helpers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RamezIssac/django-tabular-permissions/HEAD/tabular_permissions/helpers.py -------------------------------------------------------------------------------- /tabular_permissions/locale/ar/LC_MESSAGES/django.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RamezIssac/django-tabular-permissions/HEAD/tabular_permissions/locale/ar/LC_MESSAGES/django.mo -------------------------------------------------------------------------------- /tabular_permissions/locale/ar/LC_MESSAGES/django.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RamezIssac/django-tabular-permissions/HEAD/tabular_permissions/locale/ar/LC_MESSAGES/django.po -------------------------------------------------------------------------------- /tabular_permissions/static/tabular_permissions/tabular_permissions.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RamezIssac/django-tabular-permissions/HEAD/tabular_permissions/static/tabular_permissions/tabular_permissions.js -------------------------------------------------------------------------------- /tabular_permissions/templates/tabular_permissions/admin/tabular_permissions.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RamezIssac/django-tabular-permissions/HEAD/tabular_permissions/templates/tabular_permissions/admin/tabular_permissions.html -------------------------------------------------------------------------------- /tabular_permissions/widgets.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RamezIssac/django-tabular-permissions/HEAD/tabular_permissions/widgets.py -------------------------------------------------------------------------------- /tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/custom_models/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/custom_models/admin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RamezIssac/django-tabular-permissions/HEAD/tests/custom_models/admin.py -------------------------------------------------------------------------------- /tests/custom_models/apps.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RamezIssac/django-tabular-permissions/HEAD/tests/custom_models/apps.py -------------------------------------------------------------------------------- /tests/custom_models/migrations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/custom_models/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RamezIssac/django-tabular-permissions/HEAD/tests/custom_models/models.py -------------------------------------------------------------------------------- /tests/custom_models/tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RamezIssac/django-tabular-permissions/HEAD/tests/custom_models/tests.py -------------------------------------------------------------------------------- /tests/custom_models/views.py: -------------------------------------------------------------------------------- 1 | from django.shortcuts import render 2 | 3 | # Create your views here. 4 | -------------------------------------------------------------------------------- /tests/manage.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RamezIssac/django-tabular-permissions/HEAD/tests/manage.py -------------------------------------------------------------------------------- /tests/requirements.txt: -------------------------------------------------------------------------------- 1 | pyquery 2 | coverage 3 | -------------------------------------------------------------------------------- /tests/runtests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RamezIssac/django-tabular-permissions/HEAD/tests/runtests.py -------------------------------------------------------------------------------- /tests/test_settings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RamezIssac/django-tabular-permissions/HEAD/tests/test_settings.py -------------------------------------------------------------------------------- /tests/test_tabular_permissions/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/test_tabular_permissions/tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RamezIssac/django-tabular-permissions/HEAD/tests/test_tabular_permissions/tests.py -------------------------------------------------------------------------------- /tests/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RamezIssac/django-tabular-permissions/HEAD/tests/urls.py --------------------------------------------------------------------------------