├── .coveragerc ├── .github └── workflows │ ├── release.yml │ └── test.yml ├── .gitignore ├── LICENSE ├── MANIFEST.in ├── README.rst ├── polymodels ├── __init__.py ├── fields.py ├── forms.py ├── managers.py ├── models.py └── utils.py ├── setup.cfg ├── setup.py ├── tests ├── __init__.py ├── base.py ├── forms.py ├── migrations │ ├── 0001_initial.py │ └── __init__.py ├── models.py ├── settings.py ├── test_fields.py ├── test_forms.py ├── test_managers.py ├── test_models.py └── test_related.py └── tox.ini /.coveragerc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/charettes/django-polymodels/HEAD/.coveragerc -------------------------------------------------------------------------------- /.github/workflows/release.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/charettes/django-polymodels/HEAD/.github/workflows/release.yml -------------------------------------------------------------------------------- /.github/workflows/test.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/charettes/django-polymodels/HEAD/.github/workflows/test.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/charettes/django-polymodels/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/charettes/django-polymodels/HEAD/LICENSE -------------------------------------------------------------------------------- /MANIFEST.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/charettes/django-polymodels/HEAD/MANIFEST.in -------------------------------------------------------------------------------- /README.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/charettes/django-polymodels/HEAD/README.rst -------------------------------------------------------------------------------- /polymodels/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/charettes/django-polymodels/HEAD/polymodels/__init__.py -------------------------------------------------------------------------------- /polymodels/fields.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/charettes/django-polymodels/HEAD/polymodels/fields.py -------------------------------------------------------------------------------- /polymodels/forms.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/charettes/django-polymodels/HEAD/polymodels/forms.py -------------------------------------------------------------------------------- /polymodels/managers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/charettes/django-polymodels/HEAD/polymodels/managers.py -------------------------------------------------------------------------------- /polymodels/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/charettes/django-polymodels/HEAD/polymodels/models.py -------------------------------------------------------------------------------- /polymodels/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/charettes/django-polymodels/HEAD/polymodels/utils.py -------------------------------------------------------------------------------- /setup.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/charettes/django-polymodels/HEAD/setup.cfg -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/charettes/django-polymodels/HEAD/setup.py -------------------------------------------------------------------------------- /tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/base.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/charettes/django-polymodels/HEAD/tests/base.py -------------------------------------------------------------------------------- /tests/forms.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/charettes/django-polymodels/HEAD/tests/forms.py -------------------------------------------------------------------------------- /tests/migrations/0001_initial.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/charettes/django-polymodels/HEAD/tests/migrations/0001_initial.py -------------------------------------------------------------------------------- /tests/migrations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/charettes/django-polymodels/HEAD/tests/models.py -------------------------------------------------------------------------------- /tests/settings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/charettes/django-polymodels/HEAD/tests/settings.py -------------------------------------------------------------------------------- /tests/test_fields.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/charettes/django-polymodels/HEAD/tests/test_fields.py -------------------------------------------------------------------------------- /tests/test_forms.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/charettes/django-polymodels/HEAD/tests/test_forms.py -------------------------------------------------------------------------------- /tests/test_managers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/charettes/django-polymodels/HEAD/tests/test_managers.py -------------------------------------------------------------------------------- /tests/test_models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/charettes/django-polymodels/HEAD/tests/test_models.py -------------------------------------------------------------------------------- /tests/test_related.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/charettes/django-polymodels/HEAD/tests/test_related.py -------------------------------------------------------------------------------- /tox.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/charettes/django-polymodels/HEAD/tox.ini --------------------------------------------------------------------------------