├── .codeclimate.yml ├── .coveragerc ├── .editorconfig ├── .github ├── ISSUE_TEMPLATE │ ├── bug_report.md │ └── feature_request.md ├── dependabot.yml ├── release.yml └── workflows │ ├── release.yml │ └── test.yml ├── .gitignore ├── .pre-commit-config.yaml ├── .readthedocs.yaml ├── .yamllint ├── AUTHORS.rst ├── CHANGES.rst ├── CODE_OF_CONDUCT.md ├── CONTRIBUTING.rst ├── LICENSE.txt ├── Makefile ├── PULL_REQUEST_TEMPLATE.md ├── README.rst ├── codecov.yml ├── doc-requirements.txt ├── docs ├── Makefile ├── _static │ └── .keep ├── admin.rst ├── common_issues.rst ├── conf.py ├── historical_model.rst ├── history_diffing.rst ├── index.rst ├── make.bat ├── multiple_dbs.rst ├── querying_history.rst ├── quick_start.rst ├── screens │ ├── 10_revert_disabled.png │ ├── 1_poll_history.png │ ├── 2_revert.png │ ├── 3_poll_reverted.png │ ├── 4_history_after_poll_reverted.png │ └── 5_history_list_display.png ├── signals.rst ├── user_tracking.rst └── utils.rst ├── pyproject.toml ├── requirements ├── coverage.txt ├── docs.txt ├── lint.txt ├── mysql.txt ├── postgres.txt ├── test.txt └── tox.txt ├── runtests.py ├── simple_history ├── __init__.py ├── admin.py ├── exceptions.py ├── locale │ ├── ar │ │ └── LC_MESSAGES │ │ │ ├── django.mo │ │ │ └── django.po │ ├── cs_CZ │ │ └── LC_MESSAGES │ │ │ ├── django.mo │ │ │ └── django.po │ ├── de │ │ └── LC_MESSAGES │ │ │ ├── django.mo │ │ │ └── django.po │ ├── fr │ │ └── LC_MESSAGES │ │ │ ├── django.mo │ │ │ └── django.po │ ├── id │ │ └── LC_MESSAGES │ │ │ ├── django.mo │ │ │ └── django.po │ ├── nb │ │ └── LC_MESSAGES │ │ │ ├── django.mo │ │ │ └── django.po │ ├── pl │ │ └── LC_MESSAGES │ │ │ ├── django.mo │ │ │ └── django.po │ ├── pt_BR │ │ └── LC_MESSAGES │ │ │ ├── django.mo │ │ │ └── django.po │ ├── ru_RU │ │ └── LC_MESSAGES │ │ │ ├── django.mo │ │ │ └── django.po │ ├── ur │ │ └── LC_MESSAGES │ │ │ ├── django.mo │ │ │ └── django.po │ └── zh_Hans │ │ └── LC_MESSAGES │ │ ├── django.mo │ │ └── django.po ├── management │ ├── __init__.py │ └── commands │ │ ├── __init__.py │ │ ├── clean_duplicate_history.py │ │ ├── clean_old_history.py │ │ └── populate_history.py ├── manager.py ├── middleware.py ├── models.py ├── registry_tests │ ├── __init__.py │ ├── migration_test_app │ │ ├── __init__.py │ │ ├── migrations │ │ │ ├── 0001_initial.py │ │ │ ├── 0002_historicalmodelwithcustomattrforeignkey_modelwithcustomattrforeignkey.py │ │ │ ├── 0003_alter_historicalmodelwithcustomattrforeignkey_options_and_more.py │ │ │ ├── 0004_history_date_indexing.py │ │ │ ├── 0005_historicalmodelwithcustomattronetoonefield_modelwithcustomattronetoonefield.py │ │ │ ├── 0006_alter_historicalmodelwithcustomattronetoonefield_options_and_more.py │ │ │ ├── 0007_alter_historicalmodelwithcustomattrforeignkey_options_and_more.py │ │ │ └── __init__.py │ │ └── models.py │ ├── models.py │ └── tests.py ├── signals.py ├── template_utils.py ├── templates │ └── simple_history │ │ ├── object_history.html │ │ ├── object_history_form.html │ │ ├── object_history_list.html │ │ └── submit_line.html ├── templatetags │ ├── __init__.py │ ├── getattributes.py │ └── simple_history_compat.py ├── tests │ ├── __init__.py │ ├── admin.py │ ├── custom_user │ │ ├── __init__.py │ │ ├── admin.py │ │ └── models.py │ ├── external │ │ ├── __init__.py │ │ └── models.py │ ├── generated_file_checks │ │ ├── __init__.py │ │ └── check_translations.py │ ├── models.py │ ├── other_admin.py │ ├── tests │ │ ├── __init__.py │ │ ├── test_admin.py │ │ ├── test_commands.py │ │ ├── test_deprecation.py │ │ ├── test_index.py │ │ ├── test_manager.py │ │ ├── test_middleware.py │ │ ├── test_models.py │ │ ├── test_signals.py │ │ ├── test_template_utils.py │ │ ├── test_templatetags.py │ │ ├── test_utils.py │ │ └── utils.py │ ├── urls.py │ └── view.py └── utils.py └── tox.ini /.codeclimate.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/django-commons/django-simple-history/HEAD/.codeclimate.yml -------------------------------------------------------------------------------- /.coveragerc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/django-commons/django-simple-history/HEAD/.coveragerc -------------------------------------------------------------------------------- /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/django-commons/django-simple-history/HEAD/.editorconfig -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/bug_report.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/django-commons/django-simple-history/HEAD/.github/ISSUE_TEMPLATE/bug_report.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/feature_request.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/django-commons/django-simple-history/HEAD/.github/ISSUE_TEMPLATE/feature_request.md -------------------------------------------------------------------------------- /.github/dependabot.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/django-commons/django-simple-history/HEAD/.github/dependabot.yml -------------------------------------------------------------------------------- /.github/release.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/django-commons/django-simple-history/HEAD/.github/release.yml -------------------------------------------------------------------------------- /.github/workflows/release.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/django-commons/django-simple-history/HEAD/.github/workflows/release.yml -------------------------------------------------------------------------------- /.github/workflows/test.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/django-commons/django-simple-history/HEAD/.github/workflows/test.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/django-commons/django-simple-history/HEAD/.gitignore -------------------------------------------------------------------------------- /.pre-commit-config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/django-commons/django-simple-history/HEAD/.pre-commit-config.yaml -------------------------------------------------------------------------------- /.readthedocs.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/django-commons/django-simple-history/HEAD/.readthedocs.yaml -------------------------------------------------------------------------------- /.yamllint: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/django-commons/django-simple-history/HEAD/.yamllint -------------------------------------------------------------------------------- /AUTHORS.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/django-commons/django-simple-history/HEAD/AUTHORS.rst -------------------------------------------------------------------------------- /CHANGES.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/django-commons/django-simple-history/HEAD/CHANGES.rst -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/django-commons/django-simple-history/HEAD/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /CONTRIBUTING.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/django-commons/django-simple-history/HEAD/CONTRIBUTING.rst -------------------------------------------------------------------------------- /LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/django-commons/django-simple-history/HEAD/LICENSE.txt -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/django-commons/django-simple-history/HEAD/Makefile -------------------------------------------------------------------------------- /PULL_REQUEST_TEMPLATE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/django-commons/django-simple-history/HEAD/PULL_REQUEST_TEMPLATE.md -------------------------------------------------------------------------------- /README.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/django-commons/django-simple-history/HEAD/README.rst -------------------------------------------------------------------------------- /codecov.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/django-commons/django-simple-history/HEAD/codecov.yml -------------------------------------------------------------------------------- /doc-requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/django-commons/django-simple-history/HEAD/doc-requirements.txt -------------------------------------------------------------------------------- /docs/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/django-commons/django-simple-history/HEAD/docs/Makefile -------------------------------------------------------------------------------- /docs/_static/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /docs/admin.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/django-commons/django-simple-history/HEAD/docs/admin.rst -------------------------------------------------------------------------------- /docs/common_issues.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/django-commons/django-simple-history/HEAD/docs/common_issues.rst -------------------------------------------------------------------------------- /docs/conf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/django-commons/django-simple-history/HEAD/docs/conf.py -------------------------------------------------------------------------------- /docs/historical_model.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/django-commons/django-simple-history/HEAD/docs/historical_model.rst -------------------------------------------------------------------------------- /docs/history_diffing.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/django-commons/django-simple-history/HEAD/docs/history_diffing.rst -------------------------------------------------------------------------------- /docs/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/django-commons/django-simple-history/HEAD/docs/index.rst -------------------------------------------------------------------------------- /docs/make.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/django-commons/django-simple-history/HEAD/docs/make.bat -------------------------------------------------------------------------------- /docs/multiple_dbs.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/django-commons/django-simple-history/HEAD/docs/multiple_dbs.rst -------------------------------------------------------------------------------- /docs/querying_history.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/django-commons/django-simple-history/HEAD/docs/querying_history.rst -------------------------------------------------------------------------------- /docs/quick_start.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/django-commons/django-simple-history/HEAD/docs/quick_start.rst -------------------------------------------------------------------------------- /docs/screens/10_revert_disabled.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/django-commons/django-simple-history/HEAD/docs/screens/10_revert_disabled.png -------------------------------------------------------------------------------- /docs/screens/1_poll_history.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/django-commons/django-simple-history/HEAD/docs/screens/1_poll_history.png -------------------------------------------------------------------------------- /docs/screens/2_revert.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/django-commons/django-simple-history/HEAD/docs/screens/2_revert.png -------------------------------------------------------------------------------- /docs/screens/3_poll_reverted.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/django-commons/django-simple-history/HEAD/docs/screens/3_poll_reverted.png -------------------------------------------------------------------------------- /docs/screens/4_history_after_poll_reverted.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/django-commons/django-simple-history/HEAD/docs/screens/4_history_after_poll_reverted.png -------------------------------------------------------------------------------- /docs/screens/5_history_list_display.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/django-commons/django-simple-history/HEAD/docs/screens/5_history_list_display.png -------------------------------------------------------------------------------- /docs/signals.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/django-commons/django-simple-history/HEAD/docs/signals.rst -------------------------------------------------------------------------------- /docs/user_tracking.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/django-commons/django-simple-history/HEAD/docs/user_tracking.rst -------------------------------------------------------------------------------- /docs/utils.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/django-commons/django-simple-history/HEAD/docs/utils.rst -------------------------------------------------------------------------------- /pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/django-commons/django-simple-history/HEAD/pyproject.toml -------------------------------------------------------------------------------- /requirements/coverage.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/django-commons/django-simple-history/HEAD/requirements/coverage.txt -------------------------------------------------------------------------------- /requirements/docs.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/django-commons/django-simple-history/HEAD/requirements/docs.txt -------------------------------------------------------------------------------- /requirements/lint.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/django-commons/django-simple-history/HEAD/requirements/lint.txt -------------------------------------------------------------------------------- /requirements/mysql.txt: -------------------------------------------------------------------------------- 1 | mysqlclient==2.2.7 2 | -------------------------------------------------------------------------------- /requirements/postgres.txt: -------------------------------------------------------------------------------- 1 | psycopg[binary]==3.2.13 2 | -------------------------------------------------------------------------------- /requirements/test.txt: -------------------------------------------------------------------------------- 1 | -r ./coverage.txt 2 | -------------------------------------------------------------------------------- /requirements/tox.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/django-commons/django-simple-history/HEAD/requirements/tox.txt -------------------------------------------------------------------------------- /runtests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/django-commons/django-simple-history/HEAD/runtests.py -------------------------------------------------------------------------------- /simple_history/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/django-commons/django-simple-history/HEAD/simple_history/__init__.py -------------------------------------------------------------------------------- /simple_history/admin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/django-commons/django-simple-history/HEAD/simple_history/admin.py -------------------------------------------------------------------------------- /simple_history/exceptions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/django-commons/django-simple-history/HEAD/simple_history/exceptions.py -------------------------------------------------------------------------------- /simple_history/locale/ar/LC_MESSAGES/django.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/django-commons/django-simple-history/HEAD/simple_history/locale/ar/LC_MESSAGES/django.mo -------------------------------------------------------------------------------- /simple_history/locale/ar/LC_MESSAGES/django.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/django-commons/django-simple-history/HEAD/simple_history/locale/ar/LC_MESSAGES/django.po -------------------------------------------------------------------------------- /simple_history/locale/cs_CZ/LC_MESSAGES/django.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/django-commons/django-simple-history/HEAD/simple_history/locale/cs_CZ/LC_MESSAGES/django.mo -------------------------------------------------------------------------------- /simple_history/locale/cs_CZ/LC_MESSAGES/django.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/django-commons/django-simple-history/HEAD/simple_history/locale/cs_CZ/LC_MESSAGES/django.po -------------------------------------------------------------------------------- /simple_history/locale/de/LC_MESSAGES/django.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/django-commons/django-simple-history/HEAD/simple_history/locale/de/LC_MESSAGES/django.mo -------------------------------------------------------------------------------- /simple_history/locale/de/LC_MESSAGES/django.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/django-commons/django-simple-history/HEAD/simple_history/locale/de/LC_MESSAGES/django.po -------------------------------------------------------------------------------- /simple_history/locale/fr/LC_MESSAGES/django.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/django-commons/django-simple-history/HEAD/simple_history/locale/fr/LC_MESSAGES/django.mo -------------------------------------------------------------------------------- /simple_history/locale/fr/LC_MESSAGES/django.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/django-commons/django-simple-history/HEAD/simple_history/locale/fr/LC_MESSAGES/django.po -------------------------------------------------------------------------------- /simple_history/locale/id/LC_MESSAGES/django.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/django-commons/django-simple-history/HEAD/simple_history/locale/id/LC_MESSAGES/django.mo -------------------------------------------------------------------------------- /simple_history/locale/id/LC_MESSAGES/django.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/django-commons/django-simple-history/HEAD/simple_history/locale/id/LC_MESSAGES/django.po -------------------------------------------------------------------------------- /simple_history/locale/nb/LC_MESSAGES/django.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/django-commons/django-simple-history/HEAD/simple_history/locale/nb/LC_MESSAGES/django.mo -------------------------------------------------------------------------------- /simple_history/locale/nb/LC_MESSAGES/django.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/django-commons/django-simple-history/HEAD/simple_history/locale/nb/LC_MESSAGES/django.po -------------------------------------------------------------------------------- /simple_history/locale/pl/LC_MESSAGES/django.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/django-commons/django-simple-history/HEAD/simple_history/locale/pl/LC_MESSAGES/django.mo -------------------------------------------------------------------------------- /simple_history/locale/pl/LC_MESSAGES/django.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/django-commons/django-simple-history/HEAD/simple_history/locale/pl/LC_MESSAGES/django.po -------------------------------------------------------------------------------- /simple_history/locale/pt_BR/LC_MESSAGES/django.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/django-commons/django-simple-history/HEAD/simple_history/locale/pt_BR/LC_MESSAGES/django.mo -------------------------------------------------------------------------------- /simple_history/locale/pt_BR/LC_MESSAGES/django.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/django-commons/django-simple-history/HEAD/simple_history/locale/pt_BR/LC_MESSAGES/django.po -------------------------------------------------------------------------------- /simple_history/locale/ru_RU/LC_MESSAGES/django.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/django-commons/django-simple-history/HEAD/simple_history/locale/ru_RU/LC_MESSAGES/django.mo -------------------------------------------------------------------------------- /simple_history/locale/ru_RU/LC_MESSAGES/django.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/django-commons/django-simple-history/HEAD/simple_history/locale/ru_RU/LC_MESSAGES/django.po -------------------------------------------------------------------------------- /simple_history/locale/ur/LC_MESSAGES/django.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/django-commons/django-simple-history/HEAD/simple_history/locale/ur/LC_MESSAGES/django.mo -------------------------------------------------------------------------------- /simple_history/locale/ur/LC_MESSAGES/django.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/django-commons/django-simple-history/HEAD/simple_history/locale/ur/LC_MESSAGES/django.po -------------------------------------------------------------------------------- /simple_history/locale/zh_Hans/LC_MESSAGES/django.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/django-commons/django-simple-history/HEAD/simple_history/locale/zh_Hans/LC_MESSAGES/django.mo -------------------------------------------------------------------------------- /simple_history/locale/zh_Hans/LC_MESSAGES/django.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/django-commons/django-simple-history/HEAD/simple_history/locale/zh_Hans/LC_MESSAGES/django.po -------------------------------------------------------------------------------- /simple_history/management/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /simple_history/management/commands/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /simple_history/management/commands/clean_duplicate_history.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/django-commons/django-simple-history/HEAD/simple_history/management/commands/clean_duplicate_history.py -------------------------------------------------------------------------------- /simple_history/management/commands/clean_old_history.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/django-commons/django-simple-history/HEAD/simple_history/management/commands/clean_old_history.py -------------------------------------------------------------------------------- /simple_history/management/commands/populate_history.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/django-commons/django-simple-history/HEAD/simple_history/management/commands/populate_history.py -------------------------------------------------------------------------------- /simple_history/manager.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/django-commons/django-simple-history/HEAD/simple_history/manager.py -------------------------------------------------------------------------------- /simple_history/middleware.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/django-commons/django-simple-history/HEAD/simple_history/middleware.py -------------------------------------------------------------------------------- /simple_history/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/django-commons/django-simple-history/HEAD/simple_history/models.py -------------------------------------------------------------------------------- /simple_history/registry_tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /simple_history/registry_tests/migration_test_app/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /simple_history/registry_tests/migration_test_app/migrations/0001_initial.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/django-commons/django-simple-history/HEAD/simple_history/registry_tests/migration_test_app/migrations/0001_initial.py -------------------------------------------------------------------------------- /simple_history/registry_tests/migration_test_app/migrations/0002_historicalmodelwithcustomattrforeignkey_modelwithcustomattrforeignkey.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/django-commons/django-simple-history/HEAD/simple_history/registry_tests/migration_test_app/migrations/0002_historicalmodelwithcustomattrforeignkey_modelwithcustomattrforeignkey.py -------------------------------------------------------------------------------- /simple_history/registry_tests/migration_test_app/migrations/0003_alter_historicalmodelwithcustomattrforeignkey_options_and_more.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/django-commons/django-simple-history/HEAD/simple_history/registry_tests/migration_test_app/migrations/0003_alter_historicalmodelwithcustomattrforeignkey_options_and_more.py -------------------------------------------------------------------------------- /simple_history/registry_tests/migration_test_app/migrations/0004_history_date_indexing.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/django-commons/django-simple-history/HEAD/simple_history/registry_tests/migration_test_app/migrations/0004_history_date_indexing.py -------------------------------------------------------------------------------- /simple_history/registry_tests/migration_test_app/migrations/0005_historicalmodelwithcustomattronetoonefield_modelwithcustomattronetoonefield.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/django-commons/django-simple-history/HEAD/simple_history/registry_tests/migration_test_app/migrations/0005_historicalmodelwithcustomattronetoonefield_modelwithcustomattronetoonefield.py -------------------------------------------------------------------------------- /simple_history/registry_tests/migration_test_app/migrations/0006_alter_historicalmodelwithcustomattronetoonefield_options_and_more.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/django-commons/django-simple-history/HEAD/simple_history/registry_tests/migration_test_app/migrations/0006_alter_historicalmodelwithcustomattronetoonefield_options_and_more.py -------------------------------------------------------------------------------- /simple_history/registry_tests/migration_test_app/migrations/0007_alter_historicalmodelwithcustomattrforeignkey_options_and_more.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/django-commons/django-simple-history/HEAD/simple_history/registry_tests/migration_test_app/migrations/0007_alter_historicalmodelwithcustomattrforeignkey_options_and_more.py -------------------------------------------------------------------------------- /simple_history/registry_tests/migration_test_app/migrations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /simple_history/registry_tests/migration_test_app/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/django-commons/django-simple-history/HEAD/simple_history/registry_tests/migration_test_app/models.py -------------------------------------------------------------------------------- /simple_history/registry_tests/models.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /simple_history/registry_tests/tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/django-commons/django-simple-history/HEAD/simple_history/registry_tests/tests.py -------------------------------------------------------------------------------- /simple_history/signals.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/django-commons/django-simple-history/HEAD/simple_history/signals.py -------------------------------------------------------------------------------- /simple_history/template_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/django-commons/django-simple-history/HEAD/simple_history/template_utils.py -------------------------------------------------------------------------------- /simple_history/templates/simple_history/object_history.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/django-commons/django-simple-history/HEAD/simple_history/templates/simple_history/object_history.html -------------------------------------------------------------------------------- /simple_history/templates/simple_history/object_history_form.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/django-commons/django-simple-history/HEAD/simple_history/templates/simple_history/object_history_form.html -------------------------------------------------------------------------------- /simple_history/templates/simple_history/object_history_list.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/django-commons/django-simple-history/HEAD/simple_history/templates/simple_history/object_history_list.html -------------------------------------------------------------------------------- /simple_history/templates/simple_history/submit_line.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/django-commons/django-simple-history/HEAD/simple_history/templates/simple_history/submit_line.html -------------------------------------------------------------------------------- /simple_history/templatetags/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /simple_history/templatetags/getattributes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/django-commons/django-simple-history/HEAD/simple_history/templatetags/getattributes.py -------------------------------------------------------------------------------- /simple_history/templatetags/simple_history_compat.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/django-commons/django-simple-history/HEAD/simple_history/templatetags/simple_history_compat.py -------------------------------------------------------------------------------- /simple_history/tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /simple_history/tests/admin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/django-commons/django-simple-history/HEAD/simple_history/tests/admin.py -------------------------------------------------------------------------------- /simple_history/tests/custom_user/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /simple_history/tests/custom_user/admin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/django-commons/django-simple-history/HEAD/simple_history/tests/custom_user/admin.py -------------------------------------------------------------------------------- /simple_history/tests/custom_user/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/django-commons/django-simple-history/HEAD/simple_history/tests/custom_user/models.py -------------------------------------------------------------------------------- /simple_history/tests/external/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /simple_history/tests/external/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/django-commons/django-simple-history/HEAD/simple_history/tests/external/models.py -------------------------------------------------------------------------------- /simple_history/tests/generated_file_checks/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /simple_history/tests/generated_file_checks/check_translations.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/django-commons/django-simple-history/HEAD/simple_history/tests/generated_file_checks/check_translations.py -------------------------------------------------------------------------------- /simple_history/tests/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/django-commons/django-simple-history/HEAD/simple_history/tests/models.py -------------------------------------------------------------------------------- /simple_history/tests/other_admin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/django-commons/django-simple-history/HEAD/simple_history/tests/other_admin.py -------------------------------------------------------------------------------- /simple_history/tests/tests/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/django-commons/django-simple-history/HEAD/simple_history/tests/tests/__init__.py -------------------------------------------------------------------------------- /simple_history/tests/tests/test_admin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/django-commons/django-simple-history/HEAD/simple_history/tests/tests/test_admin.py -------------------------------------------------------------------------------- /simple_history/tests/tests/test_commands.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/django-commons/django-simple-history/HEAD/simple_history/tests/tests/test_commands.py -------------------------------------------------------------------------------- /simple_history/tests/tests/test_deprecation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/django-commons/django-simple-history/HEAD/simple_history/tests/tests/test_deprecation.py -------------------------------------------------------------------------------- /simple_history/tests/tests/test_index.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/django-commons/django-simple-history/HEAD/simple_history/tests/tests/test_index.py -------------------------------------------------------------------------------- /simple_history/tests/tests/test_manager.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/django-commons/django-simple-history/HEAD/simple_history/tests/tests/test_manager.py -------------------------------------------------------------------------------- /simple_history/tests/tests/test_middleware.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/django-commons/django-simple-history/HEAD/simple_history/tests/tests/test_middleware.py -------------------------------------------------------------------------------- /simple_history/tests/tests/test_models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/django-commons/django-simple-history/HEAD/simple_history/tests/tests/test_models.py -------------------------------------------------------------------------------- /simple_history/tests/tests/test_signals.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/django-commons/django-simple-history/HEAD/simple_history/tests/tests/test_signals.py -------------------------------------------------------------------------------- /simple_history/tests/tests/test_template_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/django-commons/django-simple-history/HEAD/simple_history/tests/tests/test_template_utils.py -------------------------------------------------------------------------------- /simple_history/tests/tests/test_templatetags.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/django-commons/django-simple-history/HEAD/simple_history/tests/tests/test_templatetags.py -------------------------------------------------------------------------------- /simple_history/tests/tests/test_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/django-commons/django-simple-history/HEAD/simple_history/tests/tests/test_utils.py -------------------------------------------------------------------------------- /simple_history/tests/tests/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/django-commons/django-simple-history/HEAD/simple_history/tests/tests/utils.py -------------------------------------------------------------------------------- /simple_history/tests/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/django-commons/django-simple-history/HEAD/simple_history/tests/urls.py -------------------------------------------------------------------------------- /simple_history/tests/view.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/django-commons/django-simple-history/HEAD/simple_history/tests/view.py -------------------------------------------------------------------------------- /simple_history/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/django-commons/django-simple-history/HEAD/simple_history/utils.py -------------------------------------------------------------------------------- /tox.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/django-commons/django-simple-history/HEAD/tox.ini --------------------------------------------------------------------------------