├── .coveragerc ├── .gitignore ├── .travis.yml ├── LICENSE ├── MANIFEST.in ├── Makefile ├── README.rst ├── actionslog ├── __init__.py ├── admin.py ├── apps.py ├── diff.py ├── forms.py ├── middleware.py ├── migrations │ ├── 0001_initial.py │ ├── 0002_auto_20181211_1518.py │ └── __init__.py ├── models.py ├── receivers.py ├── registry.py ├── settings.py ├── signals.py └── tests │ ├── __init__.py │ └── test_models.py ├── requirements.txt ├── setup.py ├── tests ├── develop.py ├── manage.py ├── project │ ├── __init__.py │ ├── settings.py │ ├── urls.py │ └── wsgi.py ├── requirements.pip ├── settings.py └── with_venv.sh └── tox.ini /.coveragerc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shtalinberg/django-actions-logger/HEAD/.coveragerc -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shtalinberg/django-actions-logger/HEAD/.gitignore -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shtalinberg/django-actions-logger/HEAD/.travis.yml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shtalinberg/django-actions-logger/HEAD/LICENSE -------------------------------------------------------------------------------- /MANIFEST.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shtalinberg/django-actions-logger/HEAD/MANIFEST.in -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shtalinberg/django-actions-logger/HEAD/Makefile -------------------------------------------------------------------------------- /README.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shtalinberg/django-actions-logger/HEAD/README.rst -------------------------------------------------------------------------------- /actionslog/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shtalinberg/django-actions-logger/HEAD/actionslog/__init__.py -------------------------------------------------------------------------------- /actionslog/admin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shtalinberg/django-actions-logger/HEAD/actionslog/admin.py -------------------------------------------------------------------------------- /actionslog/apps.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shtalinberg/django-actions-logger/HEAD/actionslog/apps.py -------------------------------------------------------------------------------- /actionslog/diff.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shtalinberg/django-actions-logger/HEAD/actionslog/diff.py -------------------------------------------------------------------------------- /actionslog/forms.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shtalinberg/django-actions-logger/HEAD/actionslog/forms.py -------------------------------------------------------------------------------- /actionslog/middleware.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shtalinberg/django-actions-logger/HEAD/actionslog/middleware.py -------------------------------------------------------------------------------- /actionslog/migrations/0001_initial.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shtalinberg/django-actions-logger/HEAD/actionslog/migrations/0001_initial.py -------------------------------------------------------------------------------- /actionslog/migrations/0002_auto_20181211_1518.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shtalinberg/django-actions-logger/HEAD/actionslog/migrations/0002_auto_20181211_1518.py -------------------------------------------------------------------------------- /actionslog/migrations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /actionslog/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shtalinberg/django-actions-logger/HEAD/actionslog/models.py -------------------------------------------------------------------------------- /actionslog/receivers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shtalinberg/django-actions-logger/HEAD/actionslog/receivers.py -------------------------------------------------------------------------------- /actionslog/registry.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shtalinberg/django-actions-logger/HEAD/actionslog/registry.py -------------------------------------------------------------------------------- /actionslog/settings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shtalinberg/django-actions-logger/HEAD/actionslog/settings.py -------------------------------------------------------------------------------- /actionslog/signals.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shtalinberg/django-actions-logger/HEAD/actionslog/signals.py -------------------------------------------------------------------------------- /actionslog/tests/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shtalinberg/django-actions-logger/HEAD/actionslog/tests/__init__.py -------------------------------------------------------------------------------- /actionslog/tests/test_models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shtalinberg/django-actions-logger/HEAD/actionslog/tests/test_models.py -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shtalinberg/django-actions-logger/HEAD/requirements.txt -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shtalinberg/django-actions-logger/HEAD/setup.py -------------------------------------------------------------------------------- /tests/develop.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shtalinberg/django-actions-logger/HEAD/tests/develop.py -------------------------------------------------------------------------------- /tests/manage.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shtalinberg/django-actions-logger/HEAD/tests/manage.py -------------------------------------------------------------------------------- /tests/project/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/project/settings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shtalinberg/django-actions-logger/HEAD/tests/project/settings.py -------------------------------------------------------------------------------- /tests/project/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shtalinberg/django-actions-logger/HEAD/tests/project/urls.py -------------------------------------------------------------------------------- /tests/project/wsgi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shtalinberg/django-actions-logger/HEAD/tests/project/wsgi.py -------------------------------------------------------------------------------- /tests/requirements.pip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shtalinberg/django-actions-logger/HEAD/tests/requirements.pip -------------------------------------------------------------------------------- /tests/settings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shtalinberg/django-actions-logger/HEAD/tests/settings.py -------------------------------------------------------------------------------- /tests/with_venv.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shtalinberg/django-actions-logger/HEAD/tests/with_venv.sh -------------------------------------------------------------------------------- /tox.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shtalinberg/django-actions-logger/HEAD/tox.ini --------------------------------------------------------------------------------