LICENSE
MANIFEST.in
README.rst
VERSION
requirements.txt
setup.py
django_tenants/__init__.py
django_tenants/admin.py
django_tenants/apps.py
django_tenants/cache.py
django_tenants/clone.py
django_tenants/log.py
django_tenants/models.py
django_tenants/routers.py
django_tenants/signals.py
django_tenants/urlresolvers.py
django_tenants/utils.py
django_tenants.egg-info/PKG-INFO
django_tenants.egg-info/SOURCES.txt
django_tenants.egg-info/dependency_links.txt
django_tenants.egg-info/not-zip-safe
django_tenants.egg-info/requires.txt
django_tenants.egg-info/top_level.txt
django_tenants/files/__init__.py
django_tenants/files/storage.py
django_tenants/files/storages.py
django_tenants/management/__init__.py
django_tenants/management/commands/__init__.py
django_tenants/management/commands/all_tenants_command.py
django_tenants/management/commands/clone_tenant.py
django_tenants/management/commands/collectstatic_schemas.py
django_tenants/management/commands/create_missing_schemas.py
django_tenants/management/commands/create_tenant.py
django_tenants/management/commands/create_tenant_superuser.py
django_tenants/management/commands/delete_tenant.py
django_tenants/management/commands/migrate.py
django_tenants/management/commands/migrate_schemas.py
django_tenants/management/commands/rename_schema.py
django_tenants/management/commands/tenant_command.py
django_tenants/middleware/__init__.py
django_tenants/middleware/default.py
django_tenants/middleware/main.py
django_tenants/middleware/subfolder.py
django_tenants/middleware/suspicious.py
django_tenants/migration_executors/__init__.py
django_tenants/migration_executors/base.py
django_tenants/migration_executors/multiproc.py
django_tenants/migration_executors/standard.py
django_tenants/postgresql_backend/__init__.py
django_tenants/postgresql_backend/_constraints.py
django_tenants/postgresql_backend/base.py
django_tenants/postgresql_backend/introspection.py
django_tenants/staticfiles/__init__.py
django_tenants/staticfiles/finders.py
django_tenants/staticfiles/storage.py
django_tenants/template/__init__.py
django_tenants/template/loaders/__init__.py
django_tenants/template/loaders/cached.py
django_tenants/template/loaders/filesystem.py
django_tenants/templates/admin/app_list.html
django_tenants/templates/admin/index.html
django_tenants/templates/admin/django_tenants/tenant/change_form.html
django_tenants/templatetags/__init__.py
django_tenants/templatetags/tenant.py
django_tenants/test/__init__.py
django_tenants/test/cases.py
django_tenants/test/client.py
django_tenants/tests/__init__.py
django_tenants/tests/test_cache.py
django_tenants/tests/test_fast_tenants.py
django_tenants/tests/test_multi_types.py
django_tenants/tests/test_routes.py
django_tenants/tests/test_settings.py
django_tenants/tests/test_tenants.py
django_tenants/tests/test_urlresolvers.py
django_tenants/tests/test_utils.py
django_tenants/tests/test_validation_utils.py
django_tenants/tests/testcases.py
docs/Makefile
docs/conf.py
docs/credits.rst
docs/examples.rst
docs/files.rst
docs/index.rst
docs/install.rst
docs/involved.rst
docs/links.rst
docs/requirements.txt
docs/test.rst
docs/use.rst
dts_test_project/manage.py
dts_test_project/customers/__init__.py
dts_test_project/customers/models.py
dts_test_project/customers/migrations/0001_initial.py
dts_test_project/customers/migrations/__init__.py
dts_test_project/dts_multi_type2/__init__.py
dts_test_project/dts_multi_type2/models.py
dts_test_project/dts_multi_type2/migrations/0001_initial.py
dts_test_project/dts_multi_type2/migrations/__init__.py
dts_test_project/dts_test_app/__init__.py
dts_test_project/dts_test_app/models.py
dts_test_project/dts_test_app/migrations/0001_initial.py
dts_test_project/dts_test_app/migrations/__init__.py
dts_test_project/dts_test_app/static/css/global.css
dts_test_project/dts_test_app/static/css/project.css
dts_test_project/dts_test_app/templates/index.html
dts_test_project/dts_test_app/tenants/other/static/css/project.css
dts_test_project/dts_test_app/tenants/other/templates/index.html
dts_test_project/dts_test_app/tenants/test/static/css/project.css
dts_test_project/dts_test_app/tenants/test/templates/index.html
dts_test_project/dts_test_project/__init__.py
dts_test_project/dts_test_project/settings.py
dts_test_project/dts_test_project/urls.py
examples/tenant_multi_types/manage.py
examples/tenant_multi_types/customers/__init__.py
examples/tenant_multi_types/customers/admin.py
examples/tenant_multi_types/customers/models.py
examples/tenant_multi_types/customers/views.py
examples/tenant_multi_types/customers/migrations/0001_initial.py
examples/tenant_multi_types/customers/migrations/0002_auto_20171207_1616.py
examples/tenant_multi_types/customers/migrations/0003_auto_20190404_1612.py
examples/tenant_multi_types/customers/migrations/0004_client_type.py
examples/tenant_multi_types/customers/migrations/__init__.py
examples/tenant_multi_types/templates/base.html
examples/tenant_multi_types/templates/index_public.html
examples/tenant_multi_types/templates/index_tenant.html
examples/tenant_multi_types/templates/index_type_2.html
examples/tenant_multi_types/templates/random_form.html
examples/tenant_multi_types/templates/upload_file.html
examples/tenant_multi_types/tenant_multi_types_tutorial/__init__.py
examples/tenant_multi_types/tenant_multi_types_tutorial/context_processors.py
examples/tenant_multi_types/tenant_multi_types_tutorial/middleware.py
examples/tenant_multi_types/tenant_multi_types_tutorial/settings.py
examples/tenant_multi_types/tenant_multi_types_tutorial/urls_public.py
examples/tenant_multi_types/tenant_multi_types_tutorial/urls_type1.py
examples/tenant_multi_types/tenant_multi_types_tutorial/urls_type2.py
examples/tenant_multi_types/tenant_multi_types_tutorial/views.py
examples/tenant_multi_types/tenant_multi_types_tutorial/wsgi.py
examples/tenant_multi_types/tenant_type_both/__init__.py
examples/tenant_multi_types/tenant_type_both/admin.py
examples/tenant_multi_types/tenant_type_both/apps.py
examples/tenant_multi_types/tenant_type_both/models.py
examples/tenant_multi_types/tenant_type_both/tests.py
examples/tenant_multi_types/tenant_type_both/views.py
examples/tenant_multi_types/tenant_type_both/migrations/0001_initial.py
examples/tenant_multi_types/tenant_type_both/migrations/__init__.py
examples/tenant_multi_types/tenant_type_one_only/__init__.py
examples/tenant_multi_types/tenant_type_one_only/admin.py
examples/tenant_multi_types/tenant_type_one_only/apps.py
examples/tenant_multi_types/tenant_type_one_only/forms.py
examples/tenant_multi_types/tenant_type_one_only/models.py
examples/tenant_multi_types/tenant_type_one_only/tests.py
examples/tenant_multi_types/tenant_type_one_only/views.py
examples/tenant_multi_types/tenant_type_one_only/management/__init__.py
examples/tenant_multi_types/tenant_type_one_only/management/commands/__init__.py
examples/tenant_multi_types/tenant_type_one_only/management/commands/dtest.py
examples/tenant_multi_types/tenant_type_one_only/migrations/0001_initial.py
examples/tenant_multi_types/tenant_type_one_only/migrations/__init__.py
examples/tenant_multi_types/tenant_type_two_only/__init__.py
examples/tenant_multi_types/tenant_type_two_only/admin.py
examples/tenant_multi_types/tenant_type_two_only/apps.py
examples/tenant_multi_types/tenant_type_two_only/models.py
examples/tenant_multi_types/tenant_type_two_only/tests.py
examples/tenant_multi_types/tenant_type_two_only/views.py
examples/tenant_multi_types/tenant_type_two_only/migrations/0001_initial.py
examples/tenant_multi_types/tenant_type_two_only/migrations/__init__.py
examples/tenant_subfolder_tutorial/manage.py
examples/tenant_subfolder_tutorial/customers/__init__.py
examples/tenant_subfolder_tutorial/customers/admin.py
examples/tenant_subfolder_tutorial/customers/forms.py
examples/tenant_subfolder_tutorial/customers/models.py
examples/tenant_subfolder_tutorial/customers/views.py
examples/tenant_subfolder_tutorial/customers/migrations/0001_initial.py
examples/tenant_subfolder_tutorial/customers/migrations/0002_auto_20171207_1616.py
examples/tenant_subfolder_tutorial/customers/migrations/0003_auto_20190404_1612.py
examples/tenant_subfolder_tutorial/customers/migrations/__init__.py
examples/tenant_subfolder_tutorial/templates/base.html
examples/tenant_subfolder_tutorial/templates/index_public.html
examples/tenant_subfolder_tutorial/templates/index_tenant.html
examples/tenant_subfolder_tutorial/templates/random_form.html
examples/tenant_subfolder_tutorial/templates/upload_file.html
examples/tenant_subfolder_tutorial/tenant_only/__init__.py
examples/tenant_subfolder_tutorial/tenant_only/admin.py
examples/tenant_subfolder_tutorial/tenant_only/apps.py
examples/tenant_subfolder_tutorial/tenant_only/models.py
examples/tenant_subfolder_tutorial/tenant_only/tests.py
examples/tenant_subfolder_tutorial/tenant_only/views.py
examples/tenant_subfolder_tutorial/tenant_only/management/__init__.py
examples/tenant_subfolder_tutorial/tenant_only/management/commands/__init__.py
examples/tenant_subfolder_tutorial/tenant_only/management/commands/dtest.py
examples/tenant_subfolder_tutorial/tenant_only/migrations/0001_initial.py
examples/tenant_subfolder_tutorial/tenant_only/migrations/0002_uploadfile.py
examples/tenant_subfolder_tutorial/tenant_only/migrations/__init__.py
examples/tenant_subfolder_tutorial/tenant_subfolder_tutorial/__init__.py
examples/tenant_subfolder_tutorial/tenant_subfolder_tutorial/context_processors.py
examples/tenant_subfolder_tutorial/tenant_subfolder_tutorial/settings.py
examples/tenant_subfolder_tutorial/tenant_subfolder_tutorial/urls_public.py
examples/tenant_subfolder_tutorial/tenant_subfolder_tutorial/urls_tenants.py
examples/tenant_subfolder_tutorial/tenant_subfolder_tutorial/views.py
examples/tenant_subfolder_tutorial/tenant_subfolder_tutorial/wsgi.py
examples/tenant_tutorial/manage.py
examples/tenant_tutorial/customers/__init__.py
examples/tenant_tutorial/customers/admin.py
examples/tenant_tutorial/customers/apps.py
examples/tenant_tutorial/customers/forms.py
examples/tenant_tutorial/customers/handlers.py
examples/tenant_tutorial/customers/models.py
examples/tenant_tutorial/customers/views.py
examples/tenant_tutorial/customers/migrations/0001_initial.py
examples/tenant_tutorial/customers/migrations/0002_auto_20171207_1616.py
examples/tenant_tutorial/customers/migrations/0003_auto_20190404_1612.py
examples/tenant_tutorial/customers/migrations/__init__.py
examples/tenant_tutorial/templates/base.html
examples/tenant_tutorial/templates/index_public.html
examples/tenant_tutorial/templates/index_tenant.html
examples/tenant_tutorial/templates/random_form.html
examples/tenant_tutorial/templates/upload_file.html
examples/tenant_tutorial/tenant_only/__init__.py
examples/tenant_tutorial/tenant_only/admin.py
examples/tenant_tutorial/tenant_only/apps.py
examples/tenant_tutorial/tenant_only/models.py
examples/tenant_tutorial/tenant_only/tests.py
examples/tenant_tutorial/tenant_only/views.py
examples/tenant_tutorial/tenant_only/management/__init__.py
examples/tenant_tutorial/tenant_only/management/commands/__init__.py
examples/tenant_tutorial/tenant_only/management/commands/dtest.py
examples/tenant_tutorial/tenant_only/migrations/0001_initial.py
examples/tenant_tutorial/tenant_only/migrations/0002_uploadfile.py
examples/tenant_tutorial/tenant_only/migrations/__init__.py
examples/tenant_tutorial/tenant_tutorial/__init__.py
examples/tenant_tutorial/tenant_tutorial/middleware.py
examples/tenant_tutorial/tenant_tutorial/settings.py
examples/tenant_tutorial/tenant_tutorial/urls_public.py
examples/tenant_tutorial/tenant_tutorial/urls_tenants.py
examples/tenant_tutorial/tenant_tutorial/views.py
examples/tenant_tutorial/tenant_tutorial/wsgi.py