├── .coveragerc ├── .github └── workflows │ └── tests.yml ├── .gitignore ├── CONTRIBUTING.md ├── CONTRIBUTORS ├── LICENSE ├── MANIFEST.in ├── README.md ├── entity ├── __init__.py ├── apps.py ├── config.py ├── constants.py ├── exceptions.py ├── management │ ├── __init__.py │ └── commands │ │ ├── __init__.py │ │ └── sync_entities.py ├── migrations │ ├── 0001_0010_squashed.py │ ├── 0001_initial.py │ ├── 0002_entitygroup_logic_string.py │ ├── 0002_entitykind_is_active.py │ ├── 0003_auto_20150813_2234.py │ ├── 0004_auto_20150915_1747.py │ ├── 0005_remove_entitygroup_entities.py │ ├── 0006_entity_relationship_unique.py │ ├── 0007_allentityproxy.py │ ├── 0008_auto_20180329_1934.py │ ├── 0009_auto_20180402_2145.py │ ├── 0010_auto_20181213_1817.py │ └── __init__.py ├── models.py ├── signal_handlers.py ├── sync.py ├── tests │ ├── __init__.py │ ├── migrations │ │ ├── 0001_initial.py │ │ └── __init__.py │ ├── model_tests.py │ ├── models.py │ ├── registry_tests.py │ ├── sync_tests.py │ └── utils.py ├── urls.py └── version.py ├── manage.py ├── publish.py ├── release_notes.md ├── requirements ├── requirements-testing.txt └── requirements.txt ├── run_tests.py ├── settings.py ├── setup.cfg └── setup.py /.coveragerc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ambitioninc/django-entity/HEAD/.coveragerc -------------------------------------------------------------------------------- /.github/workflows/tests.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ambitioninc/django-entity/HEAD/.github/workflows/tests.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ambitioninc/django-entity/HEAD/.gitignore -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ambitioninc/django-entity/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /CONTRIBUTORS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ambitioninc/django-entity/HEAD/CONTRIBUTORS -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ambitioninc/django-entity/HEAD/LICENSE -------------------------------------------------------------------------------- /MANIFEST.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ambitioninc/django-entity/HEAD/MANIFEST.in -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ambitioninc/django-entity/HEAD/README.md -------------------------------------------------------------------------------- /entity/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ambitioninc/django-entity/HEAD/entity/__init__.py -------------------------------------------------------------------------------- /entity/apps.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ambitioninc/django-entity/HEAD/entity/apps.py -------------------------------------------------------------------------------- /entity/config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ambitioninc/django-entity/HEAD/entity/config.py -------------------------------------------------------------------------------- /entity/constants.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ambitioninc/django-entity/HEAD/entity/constants.py -------------------------------------------------------------------------------- /entity/exceptions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ambitioninc/django-entity/HEAD/entity/exceptions.py -------------------------------------------------------------------------------- /entity/management/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /entity/management/commands/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /entity/management/commands/sync_entities.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ambitioninc/django-entity/HEAD/entity/management/commands/sync_entities.py -------------------------------------------------------------------------------- /entity/migrations/0001_0010_squashed.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ambitioninc/django-entity/HEAD/entity/migrations/0001_0010_squashed.py -------------------------------------------------------------------------------- /entity/migrations/0001_initial.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ambitioninc/django-entity/HEAD/entity/migrations/0001_initial.py -------------------------------------------------------------------------------- /entity/migrations/0002_entitygroup_logic_string.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ambitioninc/django-entity/HEAD/entity/migrations/0002_entitygroup_logic_string.py -------------------------------------------------------------------------------- /entity/migrations/0002_entitykind_is_active.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ambitioninc/django-entity/HEAD/entity/migrations/0002_entitykind_is_active.py -------------------------------------------------------------------------------- /entity/migrations/0003_auto_20150813_2234.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ambitioninc/django-entity/HEAD/entity/migrations/0003_auto_20150813_2234.py -------------------------------------------------------------------------------- /entity/migrations/0004_auto_20150915_1747.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ambitioninc/django-entity/HEAD/entity/migrations/0004_auto_20150915_1747.py -------------------------------------------------------------------------------- /entity/migrations/0005_remove_entitygroup_entities.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ambitioninc/django-entity/HEAD/entity/migrations/0005_remove_entitygroup_entities.py -------------------------------------------------------------------------------- /entity/migrations/0006_entity_relationship_unique.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ambitioninc/django-entity/HEAD/entity/migrations/0006_entity_relationship_unique.py -------------------------------------------------------------------------------- /entity/migrations/0007_allentityproxy.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ambitioninc/django-entity/HEAD/entity/migrations/0007_allentityproxy.py -------------------------------------------------------------------------------- /entity/migrations/0008_auto_20180329_1934.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ambitioninc/django-entity/HEAD/entity/migrations/0008_auto_20180329_1934.py -------------------------------------------------------------------------------- /entity/migrations/0009_auto_20180402_2145.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ambitioninc/django-entity/HEAD/entity/migrations/0009_auto_20180402_2145.py -------------------------------------------------------------------------------- /entity/migrations/0010_auto_20181213_1817.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ambitioninc/django-entity/HEAD/entity/migrations/0010_auto_20181213_1817.py -------------------------------------------------------------------------------- /entity/migrations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /entity/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ambitioninc/django-entity/HEAD/entity/models.py -------------------------------------------------------------------------------- /entity/signal_handlers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ambitioninc/django-entity/HEAD/entity/signal_handlers.py -------------------------------------------------------------------------------- /entity/sync.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ambitioninc/django-entity/HEAD/entity/sync.py -------------------------------------------------------------------------------- /entity/tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /entity/tests/migrations/0001_initial.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ambitioninc/django-entity/HEAD/entity/tests/migrations/0001_initial.py -------------------------------------------------------------------------------- /entity/tests/migrations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /entity/tests/model_tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ambitioninc/django-entity/HEAD/entity/tests/model_tests.py -------------------------------------------------------------------------------- /entity/tests/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ambitioninc/django-entity/HEAD/entity/tests/models.py -------------------------------------------------------------------------------- /entity/tests/registry_tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ambitioninc/django-entity/HEAD/entity/tests/registry_tests.py -------------------------------------------------------------------------------- /entity/tests/sync_tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ambitioninc/django-entity/HEAD/entity/tests/sync_tests.py -------------------------------------------------------------------------------- /entity/tests/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ambitioninc/django-entity/HEAD/entity/tests/utils.py -------------------------------------------------------------------------------- /entity/urls.py: -------------------------------------------------------------------------------- 1 | urlpatterns = [] # pragma: no cover 2 | -------------------------------------------------------------------------------- /entity/version.py: -------------------------------------------------------------------------------- 1 | __version__ = '6.2.3' 2 | -------------------------------------------------------------------------------- /manage.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ambitioninc/django-entity/HEAD/manage.py -------------------------------------------------------------------------------- /publish.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ambitioninc/django-entity/HEAD/publish.py -------------------------------------------------------------------------------- /release_notes.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ambitioninc/django-entity/HEAD/release_notes.md -------------------------------------------------------------------------------- /requirements/requirements-testing.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ambitioninc/django-entity/HEAD/requirements/requirements-testing.txt -------------------------------------------------------------------------------- /requirements/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ambitioninc/django-entity/HEAD/requirements/requirements.txt -------------------------------------------------------------------------------- /run_tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ambitioninc/django-entity/HEAD/run_tests.py -------------------------------------------------------------------------------- /settings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ambitioninc/django-entity/HEAD/settings.py -------------------------------------------------------------------------------- /setup.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ambitioninc/django-entity/HEAD/setup.cfg -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ambitioninc/django-entity/HEAD/setup.py --------------------------------------------------------------------------------