├── .github └── workflows │ └── tests.yml ├── .gitignore ├── CHANGELOG.md ├── LICENSE ├── Makefile ├── README.md ├── relativity ├── __init__.py ├── compat.py ├── fields.py ├── mptt.py └── treebeard.py ├── setup.py ├── test-requirements.txt └── tests ├── __init__.py ├── models.py ├── settings.py └── tests.py /.github/workflows/tests.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexHill/django-relativity/HEAD/.github/workflows/tests.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexHill/django-relativity/HEAD/.gitignore -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexHill/django-relativity/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexHill/django-relativity/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexHill/django-relativity/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexHill/django-relativity/HEAD/README.md -------------------------------------------------------------------------------- /relativity/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexHill/django-relativity/HEAD/relativity/__init__.py -------------------------------------------------------------------------------- /relativity/compat.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexHill/django-relativity/HEAD/relativity/compat.py -------------------------------------------------------------------------------- /relativity/fields.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexHill/django-relativity/HEAD/relativity/fields.py -------------------------------------------------------------------------------- /relativity/mptt.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexHill/django-relativity/HEAD/relativity/mptt.py -------------------------------------------------------------------------------- /relativity/treebeard.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexHill/django-relativity/HEAD/relativity/treebeard.py -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexHill/django-relativity/HEAD/setup.py -------------------------------------------------------------------------------- /test-requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexHill/django-relativity/HEAD/test-requirements.txt -------------------------------------------------------------------------------- /tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexHill/django-relativity/HEAD/tests/models.py -------------------------------------------------------------------------------- /tests/settings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexHill/django-relativity/HEAD/tests/settings.py -------------------------------------------------------------------------------- /tests/tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexHill/django-relativity/HEAD/tests/tests.py --------------------------------------------------------------------------------