├── .gitignore ├── LICENSE ├── MANIFEST.in ├── README.rst ├── django_model_changes ├── __init__.py ├── changes.py └── signals.py ├── docs ├── Makefile └── source │ ├── conf.py │ ├── django_model_changes.rst │ └── index.rst ├── runtests.py ├── setup.py └── tests ├── __init__.py ├── models.py ├── settings.py └── tests.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iansprice/django-model-changes-py3/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iansprice/django-model-changes-py3/HEAD/LICENSE -------------------------------------------------------------------------------- /MANIFEST.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iansprice/django-model-changes-py3/HEAD/MANIFEST.in -------------------------------------------------------------------------------- /README.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iansprice/django-model-changes-py3/HEAD/README.rst -------------------------------------------------------------------------------- /django_model_changes/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iansprice/django-model-changes-py3/HEAD/django_model_changes/__init__.py -------------------------------------------------------------------------------- /django_model_changes/changes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iansprice/django-model-changes-py3/HEAD/django_model_changes/changes.py -------------------------------------------------------------------------------- /django_model_changes/signals.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iansprice/django-model-changes-py3/HEAD/django_model_changes/signals.py -------------------------------------------------------------------------------- /docs/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iansprice/django-model-changes-py3/HEAD/docs/Makefile -------------------------------------------------------------------------------- /docs/source/conf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iansprice/django-model-changes-py3/HEAD/docs/source/conf.py -------------------------------------------------------------------------------- /docs/source/django_model_changes.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iansprice/django-model-changes-py3/HEAD/docs/source/django_model_changes.rst -------------------------------------------------------------------------------- /docs/source/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iansprice/django-model-changes-py3/HEAD/docs/source/index.rst -------------------------------------------------------------------------------- /runtests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iansprice/django-model-changes-py3/HEAD/runtests.py -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iansprice/django-model-changes-py3/HEAD/setup.py -------------------------------------------------------------------------------- /tests/__init__.py: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /tests/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iansprice/django-model-changes-py3/HEAD/tests/models.py -------------------------------------------------------------------------------- /tests/settings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iansprice/django-model-changes-py3/HEAD/tests/settings.py -------------------------------------------------------------------------------- /tests/tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iansprice/django-model-changes-py3/HEAD/tests/tests.py --------------------------------------------------------------------------------