├── .editorconfig ├── .gitattributes ├── .gitignore ├── .pre-commit-config.yaml ├── CHANGELOG.rst ├── LICENSE ├── MANIFEST.in ├── README.rst ├── django_admin_logs ├── __init__.py ├── admin.py ├── apps.py ├── models.py └── settings.py ├── pyproject.toml ├── tests ├── __init__.py ├── conftest.py ├── test_admin.py ├── test_models.py └── urls.py └── tox.ini /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radwon/django-admin-logs/HEAD/.editorconfig -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radwon/django-admin-logs/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radwon/django-admin-logs/HEAD/.gitignore -------------------------------------------------------------------------------- /.pre-commit-config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radwon/django-admin-logs/HEAD/.pre-commit-config.yaml -------------------------------------------------------------------------------- /CHANGELOG.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radwon/django-admin-logs/HEAD/CHANGELOG.rst -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radwon/django-admin-logs/HEAD/LICENSE -------------------------------------------------------------------------------- /MANIFEST.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radwon/django-admin-logs/HEAD/MANIFEST.in -------------------------------------------------------------------------------- /README.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radwon/django-admin-logs/HEAD/README.rst -------------------------------------------------------------------------------- /django_admin_logs/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /django_admin_logs/admin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radwon/django-admin-logs/HEAD/django_admin_logs/admin.py -------------------------------------------------------------------------------- /django_admin_logs/apps.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radwon/django-admin-logs/HEAD/django_admin_logs/apps.py -------------------------------------------------------------------------------- /django_admin_logs/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radwon/django-admin-logs/HEAD/django_admin_logs/models.py -------------------------------------------------------------------------------- /django_admin_logs/settings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radwon/django-admin-logs/HEAD/django_admin_logs/settings.py -------------------------------------------------------------------------------- /pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radwon/django-admin-logs/HEAD/pyproject.toml -------------------------------------------------------------------------------- /tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/conftest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radwon/django-admin-logs/HEAD/tests/conftest.py -------------------------------------------------------------------------------- /tests/test_admin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radwon/django-admin-logs/HEAD/tests/test_admin.py -------------------------------------------------------------------------------- /tests/test_models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radwon/django-admin-logs/HEAD/tests/test_models.py -------------------------------------------------------------------------------- /tests/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radwon/django-admin-logs/HEAD/tests/urls.py -------------------------------------------------------------------------------- /tox.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radwon/django-admin-logs/HEAD/tox.ini --------------------------------------------------------------------------------