├── .gitignore ├── .travis.yml ├── LICENSE ├── README.md ├── ondelta ├── __init__.py ├── models.py └── signals.py ├── setup.py ├── test_requirements.txt ├── testproject ├── manage.py └── testproject │ ├── __init__.py │ ├── settings.py │ └── testapp │ ├── __init__.py │ ├── models.py │ └── tests.py └── tox.ini /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamhaney/django-ondelta/HEAD/.gitignore -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamhaney/django-ondelta/HEAD/.travis.yml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamhaney/django-ondelta/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamhaney/django-ondelta/HEAD/README.md -------------------------------------------------------------------------------- /ondelta/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /ondelta/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamhaney/django-ondelta/HEAD/ondelta/models.py -------------------------------------------------------------------------------- /ondelta/signals.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamhaney/django-ondelta/HEAD/ondelta/signals.py -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamhaney/django-ondelta/HEAD/setup.py -------------------------------------------------------------------------------- /test_requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamhaney/django-ondelta/HEAD/test_requirements.txt -------------------------------------------------------------------------------- /testproject/manage.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamhaney/django-ondelta/HEAD/testproject/manage.py -------------------------------------------------------------------------------- /testproject/testproject/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /testproject/testproject/settings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamhaney/django-ondelta/HEAD/testproject/testproject/settings.py -------------------------------------------------------------------------------- /testproject/testproject/testapp/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /testproject/testproject/testapp/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamhaney/django-ondelta/HEAD/testproject/testproject/testapp/models.py -------------------------------------------------------------------------------- /testproject/testproject/testapp/tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamhaney/django-ondelta/HEAD/testproject/testproject/testapp/tests.py -------------------------------------------------------------------------------- /tox.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamhaney/django-ondelta/HEAD/tox.ini --------------------------------------------------------------------------------