├── .github └── workflows │ ├── docs.yml │ └── push.yml ├── .gitignore ├── CHANGELOG.md ├── LICENSE ├── README.md ├── docs ├── _static │ ├── change_form.png │ ├── change_list.png │ ├── logo.webp │ └── screenshot.png ├── changelog.md ├── index.md ├── installation.md ├── settings.md └── testing.md ├── eventlog ├── __init__.py ├── admin.py ├── apps.py ├── datastructures.py ├── events.py ├── migrations │ ├── 0001_initial.py │ ├── 0002_alter_event_group_alter_event_message_and_more.py │ ├── 0003_event_data.py │ ├── 0004_alter_event_group.py │ └── __init__.py ├── models.py ├── py.typed ├── templates │ └── admin │ │ └── eventlog │ │ └── event │ │ ├── change_form.html │ │ └── change_list.html └── tests │ ├── __init__.py │ ├── test_eventlog.py │ ├── test_migrations.py │ └── testapp │ ├── __init__.py │ ├── migrations │ └── __init__.py │ ├── settings.py │ └── urls.py ├── mkdocs.yml └── pyproject.toml /.github/workflows/docs.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bartTC/django-eventlog/HEAD/.github/workflows/docs.yml -------------------------------------------------------------------------------- /.github/workflows/push.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bartTC/django-eventlog/HEAD/.github/workflows/push.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bartTC/django-eventlog/HEAD/.gitignore -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bartTC/django-eventlog/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bartTC/django-eventlog/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bartTC/django-eventlog/HEAD/README.md -------------------------------------------------------------------------------- /docs/_static/change_form.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bartTC/django-eventlog/HEAD/docs/_static/change_form.png -------------------------------------------------------------------------------- /docs/_static/change_list.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bartTC/django-eventlog/HEAD/docs/_static/change_list.png -------------------------------------------------------------------------------- /docs/_static/logo.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bartTC/django-eventlog/HEAD/docs/_static/logo.webp -------------------------------------------------------------------------------- /docs/_static/screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bartTC/django-eventlog/HEAD/docs/_static/screenshot.png -------------------------------------------------------------------------------- /docs/changelog.md: -------------------------------------------------------------------------------- 1 | {% include-markdown "../CHANGELOG.md" %} -------------------------------------------------------------------------------- /docs/index.md: -------------------------------------------------------------------------------- 1 | {% include-markdown "../README.md" %} -------------------------------------------------------------------------------- /docs/installation.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bartTC/django-eventlog/HEAD/docs/installation.md -------------------------------------------------------------------------------- /docs/settings.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bartTC/django-eventlog/HEAD/docs/settings.md -------------------------------------------------------------------------------- /docs/testing.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bartTC/django-eventlog/HEAD/docs/testing.md -------------------------------------------------------------------------------- /eventlog/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bartTC/django-eventlog/HEAD/eventlog/__init__.py -------------------------------------------------------------------------------- /eventlog/admin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bartTC/django-eventlog/HEAD/eventlog/admin.py -------------------------------------------------------------------------------- /eventlog/apps.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bartTC/django-eventlog/HEAD/eventlog/apps.py -------------------------------------------------------------------------------- /eventlog/datastructures.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bartTC/django-eventlog/HEAD/eventlog/datastructures.py -------------------------------------------------------------------------------- /eventlog/events.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bartTC/django-eventlog/HEAD/eventlog/events.py -------------------------------------------------------------------------------- /eventlog/migrations/0001_initial.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bartTC/django-eventlog/HEAD/eventlog/migrations/0001_initial.py -------------------------------------------------------------------------------- /eventlog/migrations/0002_alter_event_group_alter_event_message_and_more.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bartTC/django-eventlog/HEAD/eventlog/migrations/0002_alter_event_group_alter_event_message_and_more.py -------------------------------------------------------------------------------- /eventlog/migrations/0003_event_data.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bartTC/django-eventlog/HEAD/eventlog/migrations/0003_event_data.py -------------------------------------------------------------------------------- /eventlog/migrations/0004_alter_event_group.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bartTC/django-eventlog/HEAD/eventlog/migrations/0004_alter_event_group.py -------------------------------------------------------------------------------- /eventlog/migrations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /eventlog/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bartTC/django-eventlog/HEAD/eventlog/models.py -------------------------------------------------------------------------------- /eventlog/py.typed: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /eventlog/templates/admin/eventlog/event/change_form.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bartTC/django-eventlog/HEAD/eventlog/templates/admin/eventlog/event/change_form.html -------------------------------------------------------------------------------- /eventlog/templates/admin/eventlog/event/change_list.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bartTC/django-eventlog/HEAD/eventlog/templates/admin/eventlog/event/change_list.html -------------------------------------------------------------------------------- /eventlog/tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /eventlog/tests/test_eventlog.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bartTC/django-eventlog/HEAD/eventlog/tests/test_eventlog.py -------------------------------------------------------------------------------- /eventlog/tests/test_migrations.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bartTC/django-eventlog/HEAD/eventlog/tests/test_migrations.py -------------------------------------------------------------------------------- /eventlog/tests/testapp/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /eventlog/tests/testapp/migrations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /eventlog/tests/testapp/settings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bartTC/django-eventlog/HEAD/eventlog/tests/testapp/settings.py -------------------------------------------------------------------------------- /eventlog/tests/testapp/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bartTC/django-eventlog/HEAD/eventlog/tests/testapp/urls.py -------------------------------------------------------------------------------- /mkdocs.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bartTC/django-eventlog/HEAD/mkdocs.yml -------------------------------------------------------------------------------- /pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bartTC/django-eventlog/HEAD/pyproject.toml --------------------------------------------------------------------------------