├── .coveragerc ├── .github └── workflows │ └── python-app.yml ├── .gitignore ├── CHANGES.rst ├── LICENSE ├── MANIFEST.in ├── README.rst ├── dev-requirements.txt ├── doc ├── TODO └── activated_mixin_listing.png ├── pytest.ini ├── requirements.txt ├── runtests.py ├── setup.py ├── tox.ini └── tracking_fields ├── __init__.py ├── admin.py ├── decorators.py ├── locale └── fr │ └── LC_MESSAGES │ ├── django.mo │ └── django.po ├── migrations ├── 0001_initial.py ├── 0002_auto_20160209_0356.py ├── 0003_auto_20220309_0347.py └── __init__.py ├── models.py ├── settings.py ├── templates └── tracking_fields │ └── admin │ ├── change_form_object.html │ ├── change_list_event.html │ └── filter.html ├── tests ├── __init__.py ├── admin.py ├── models.py ├── settings.py ├── tests.py └── urls.py └── tracking.py /.coveragerc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makinacorpus/django-tracking-fields/HEAD/.coveragerc -------------------------------------------------------------------------------- /.github/workflows/python-app.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makinacorpus/django-tracking-fields/HEAD/.github/workflows/python-app.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makinacorpus/django-tracking-fields/HEAD/.gitignore -------------------------------------------------------------------------------- /CHANGES.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makinacorpus/django-tracking-fields/HEAD/CHANGES.rst -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makinacorpus/django-tracking-fields/HEAD/LICENSE -------------------------------------------------------------------------------- /MANIFEST.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makinacorpus/django-tracking-fields/HEAD/MANIFEST.in -------------------------------------------------------------------------------- /README.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makinacorpus/django-tracking-fields/HEAD/README.rst -------------------------------------------------------------------------------- /dev-requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makinacorpus/django-tracking-fields/HEAD/dev-requirements.txt -------------------------------------------------------------------------------- /doc/TODO: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /doc/activated_mixin_listing.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makinacorpus/django-tracking-fields/HEAD/doc/activated_mixin_listing.png -------------------------------------------------------------------------------- /pytest.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makinacorpus/django-tracking-fields/HEAD/pytest.ini -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- 1 | django-cuser 2 | pytz 3 | -------------------------------------------------------------------------------- /runtests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makinacorpus/django-tracking-fields/HEAD/runtests.py -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makinacorpus/django-tracking-fields/HEAD/setup.py -------------------------------------------------------------------------------- /tox.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makinacorpus/django-tracking-fields/HEAD/tox.ini -------------------------------------------------------------------------------- /tracking_fields/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tracking_fields/admin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makinacorpus/django-tracking-fields/HEAD/tracking_fields/admin.py -------------------------------------------------------------------------------- /tracking_fields/decorators.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makinacorpus/django-tracking-fields/HEAD/tracking_fields/decorators.py -------------------------------------------------------------------------------- /tracking_fields/locale/fr/LC_MESSAGES/django.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makinacorpus/django-tracking-fields/HEAD/tracking_fields/locale/fr/LC_MESSAGES/django.mo -------------------------------------------------------------------------------- /tracking_fields/locale/fr/LC_MESSAGES/django.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makinacorpus/django-tracking-fields/HEAD/tracking_fields/locale/fr/LC_MESSAGES/django.po -------------------------------------------------------------------------------- /tracking_fields/migrations/0001_initial.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makinacorpus/django-tracking-fields/HEAD/tracking_fields/migrations/0001_initial.py -------------------------------------------------------------------------------- /tracking_fields/migrations/0002_auto_20160209_0356.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makinacorpus/django-tracking-fields/HEAD/tracking_fields/migrations/0002_auto_20160209_0356.py -------------------------------------------------------------------------------- /tracking_fields/migrations/0003_auto_20220309_0347.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makinacorpus/django-tracking-fields/HEAD/tracking_fields/migrations/0003_auto_20220309_0347.py -------------------------------------------------------------------------------- /tracking_fields/migrations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tracking_fields/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makinacorpus/django-tracking-fields/HEAD/tracking_fields/models.py -------------------------------------------------------------------------------- /tracking_fields/settings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makinacorpus/django-tracking-fields/HEAD/tracking_fields/settings.py -------------------------------------------------------------------------------- /tracking_fields/templates/tracking_fields/admin/change_form_object.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makinacorpus/django-tracking-fields/HEAD/tracking_fields/templates/tracking_fields/admin/change_form_object.html -------------------------------------------------------------------------------- /tracking_fields/templates/tracking_fields/admin/change_list_event.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makinacorpus/django-tracking-fields/HEAD/tracking_fields/templates/tracking_fields/admin/change_list_event.html -------------------------------------------------------------------------------- /tracking_fields/templates/tracking_fields/admin/filter.html: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /tracking_fields/tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tracking_fields/tests/admin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makinacorpus/django-tracking-fields/HEAD/tracking_fields/tests/admin.py -------------------------------------------------------------------------------- /tracking_fields/tests/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makinacorpus/django-tracking-fields/HEAD/tracking_fields/tests/models.py -------------------------------------------------------------------------------- /tracking_fields/tests/settings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makinacorpus/django-tracking-fields/HEAD/tracking_fields/tests/settings.py -------------------------------------------------------------------------------- /tracking_fields/tests/tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makinacorpus/django-tracking-fields/HEAD/tracking_fields/tests/tests.py -------------------------------------------------------------------------------- /tracking_fields/tests/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makinacorpus/django-tracking-fields/HEAD/tracking_fields/tests/urls.py -------------------------------------------------------------------------------- /tracking_fields/tracking.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makinacorpus/django-tracking-fields/HEAD/tracking_fields/tracking.py --------------------------------------------------------------------------------