├── .circleci └── config.yml ├── .coveragerc ├── .github └── dependabot.yml ├── .gitignore ├── LICENSE ├── README.md ├── cookiecutter.json ├── docs ├── .gitignore ├── README.md ├── babel.config.js ├── docs │ ├── deploying-your-app │ │ ├── 01-provisioning-infrastructure.md │ │ ├── 02-deploying-code.md │ │ └── _category_.json │ ├── developing-your-app │ │ ├── _category_.json │ │ ├── installing-dependencies.md │ │ ├── making-and-running-migrations.md │ │ └── setting-up-your-editor.md │ ├── features │ │ ├── _category_.json │ │ ├── api-pagination-sorting-filtering.md │ │ ├── image-thumbnailing.md │ │ ├── notifications.md │ │ └── user-authentication-and-authorization.md │ ├── getting-started │ │ ├── _category_.json │ │ ├── folder-structure.md │ │ ├── intro.md │ │ └── whats-included.md │ └── troubleshooting │ │ ├── _category_.json │ │ └── docker.md ├── docusaurus.config.js ├── package-lock.json ├── package.json ├── sidebars.js ├── src │ ├── components │ │ └── HomepageFeatures │ │ │ ├── index.js │ │ │ └── styles.module.css │ ├── css │ │ └── custom.css │ └── pages │ │ ├── index.js │ │ ├── index.module.css │ │ └── markdown-page.md ├── static │ ├── .nojekyll │ └── img │ │ ├── docusaurus.png │ │ ├── favicon.ico │ │ ├── logo.svg │ │ ├── undraw_docusaurus_mountain.svg │ │ ├── undraw_docusaurus_react.svg │ │ └── undraw_docusaurus_tree.svg └── yarn.lock ├── hooks ├── post_gen_project.py └── pre_gen_project.py └── {{ cookiecutter.project_slug }} ├── .circleci └── config.yml ├── .devcontainer ├── devcontainer.json └── docker-compose.yml ├── .dockerignore ├── .gitignore ├── .platform └── nginx │ └── conf.d │ └── proxy.conf ├── Dockerfile ├── Dockerfile.prod ├── LICENSE ├── Procfile ├── Procfile.prod ├── README.md ├── docker-compose.yml ├── docs ├── 01-browsable-api.png ├── 02-browsable-api.png ├── 03-browsable-api-debug-toolbar.png └── 04-mailhog.png ├── entrypoint.sh ├── locale └── es │ └── LC_MESSAGES │ └── django.po ├── main.tf ├── manage.py ├── prod.tfvars ├── pytest.ini ├── requirements ├── base.txt ├── dev.txt ├── prod.txt └── test.txt ├── scripts └── update-circleci.sh ├── setup.cfg ├── staging.tfvars ├── variables.tf ├── wait_for_postgres.py └── {{ cookiecutter.project_slug }} ├── __init__.py ├── agents ├── __init__.py ├── admin.py ├── apps.py ├── migrations │ ├── 0001_initial.py │ ├── 0002_alter_agent_options_agent_created_agent_modified_and_more.py │ ├── 0003_alter_agent_options_agent_address_and_more.py │ ├── 0004_alter_agent_id_alter_historicalagent_id.py │ ├── 0005_alter_agent_options.py │ ├── 0006_alter_historicalagent_options_and_more.py │ ├── 0007_agent_agents_agen_phone_n_6da118_idx.py │ └── __init__.py ├── models.py ├── notifications.py ├── serializers.py ├── signals.py ├── templates │ └── notifications │ │ └── agent_created_notification_email.html ├── tests.py └── views.py ├── asgi.py ├── core ├── __init__.py ├── admin.py ├── apps.py ├── channelmanager.py ├── fields.py ├── filters.py ├── management │ └── commands │ │ └── createsu.py ├── middleware.py ├── migrations │ ├── 0001_initial.py │ ├── 0002_alter_address_address1_alter_address_address2.py │ ├── 0003_alter_address_zip_code.py │ ├── 0004_databasenotification.py │ ├── 0005_delete_databasenotification.py │ └── __init__.py ├── models.py ├── pagination.py ├── serializers.py ├── tasks.py ├── tests.py ├── validators.py └── views.py ├── notification_system ├── __init__.py ├── admin.py ├── apps.py ├── backends.py ├── management │ └── commands │ │ ├── createnotification.py │ │ └── notification_template.py ├── migrations │ ├── 0001_initial.py │ ├── 0002_alter_databasenotification_options_and_more.py │ ├── 0003_alter_databasenotification_options.py │ ├── 0004_databasenotification_notificatio_type_3c12e3_idx_and_more.py │ └── __init__.py ├── models.py ├── notifications.py ├── serializers.py ├── tests.py └── views.py ├── settings ├── __init__.py ├── base.py ├── dev.py ├── prod.py ├── staging.py └── test.py ├── urls.py ├── users ├── __init__.py ├── admin.py ├── apps.py ├── email.py ├── migrations │ ├── 0001_initial.py │ ├── 0002_auto_20171227_2246.py │ ├── 0003_alter_user_options_alter_user_managers_and_more.py │ ├── 0004_alter_user_options_alter_user_managers_and_more.py │ ├── 0005_alter_user_managers_remove_user_username_and_more.py │ ├── 0006_user_created_user_modified.py │ ├── 0007_user_profile_picture.py │ ├── 0008_alter_user_options_user_users_user_email_6f2530_idx_and_more.py │ ├── 0009_historicaluser.py │ ├── 0010_historicaluser_activated_at_user_activated_at.py │ ├── 0011_alter_user_profile_picture.py │ ├── 0012_alter_historicaluser_is_active_alter_user_is_active.py │ ├── 0013_historicaluser_new_email_user_new_email.py │ ├── 0014_alter_user_profile_picture.py │ ├── 0015_remove_historicaluser_password.py │ ├── 0016_historicaluser_phone_number_user_phone_number_and_more.py │ ├── 0017_alter_historicaluser_options_and_more.py │ └── __init__.py ├── models.py ├── permissions.py ├── serializers.py ├── signals.py ├── templates │ └── email │ │ ├── change_email_request.html │ │ ├── custom_activation.html │ │ └── custom_password_reset.html ├── test │ ├── __init__.py │ ├── factories.py │ ├── test_models.py │ ├── test_serializers.py │ └── test_views.py └── views.py └── wsgi.py /.circleci/config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shift3/dj-starter/HEAD/.circleci/config.yml -------------------------------------------------------------------------------- /.coveragerc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shift3/dj-starter/HEAD/.coveragerc -------------------------------------------------------------------------------- /.github/dependabot.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shift3/dj-starter/HEAD/.github/dependabot.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shift3/dj-starter/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shift3/dj-starter/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shift3/dj-starter/HEAD/README.md -------------------------------------------------------------------------------- /cookiecutter.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shift3/dj-starter/HEAD/cookiecutter.json -------------------------------------------------------------------------------- /docs/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shift3/dj-starter/HEAD/docs/.gitignore -------------------------------------------------------------------------------- /docs/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shift3/dj-starter/HEAD/docs/README.md -------------------------------------------------------------------------------- /docs/babel.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shift3/dj-starter/HEAD/docs/babel.config.js -------------------------------------------------------------------------------- /docs/docs/deploying-your-app/01-provisioning-infrastructure.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shift3/dj-starter/HEAD/docs/docs/deploying-your-app/01-provisioning-infrastructure.md -------------------------------------------------------------------------------- /docs/docs/deploying-your-app/02-deploying-code.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shift3/dj-starter/HEAD/docs/docs/deploying-your-app/02-deploying-code.md -------------------------------------------------------------------------------- /docs/docs/deploying-your-app/_category_.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shift3/dj-starter/HEAD/docs/docs/deploying-your-app/_category_.json -------------------------------------------------------------------------------- /docs/docs/developing-your-app/_category_.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shift3/dj-starter/HEAD/docs/docs/developing-your-app/_category_.json -------------------------------------------------------------------------------- /docs/docs/developing-your-app/installing-dependencies.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shift3/dj-starter/HEAD/docs/docs/developing-your-app/installing-dependencies.md -------------------------------------------------------------------------------- /docs/docs/developing-your-app/making-and-running-migrations.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shift3/dj-starter/HEAD/docs/docs/developing-your-app/making-and-running-migrations.md -------------------------------------------------------------------------------- /docs/docs/developing-your-app/setting-up-your-editor.md: -------------------------------------------------------------------------------- 1 | # Setting Up Your Editor 2 | -------------------------------------------------------------------------------- /docs/docs/features/_category_.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shift3/dj-starter/HEAD/docs/docs/features/_category_.json -------------------------------------------------------------------------------- /docs/docs/features/api-pagination-sorting-filtering.md: -------------------------------------------------------------------------------- 1 | # Pagination, Sorting, and Filtering 2 | -------------------------------------------------------------------------------- /docs/docs/features/image-thumbnailing.md: -------------------------------------------------------------------------------- 1 | # Image Thumbnailing 2 | -------------------------------------------------------------------------------- /docs/docs/features/notifications.md: -------------------------------------------------------------------------------- 1 | # Working With Notifications 2 | -------------------------------------------------------------------------------- /docs/docs/features/user-authentication-and-authorization.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shift3/dj-starter/HEAD/docs/docs/features/user-authentication-and-authorization.md -------------------------------------------------------------------------------- /docs/docs/getting-started/_category_.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shift3/dj-starter/HEAD/docs/docs/getting-started/_category_.json -------------------------------------------------------------------------------- /docs/docs/getting-started/folder-structure.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shift3/dj-starter/HEAD/docs/docs/getting-started/folder-structure.md -------------------------------------------------------------------------------- /docs/docs/getting-started/intro.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shift3/dj-starter/HEAD/docs/docs/getting-started/intro.md -------------------------------------------------------------------------------- /docs/docs/getting-started/whats-included.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shift3/dj-starter/HEAD/docs/docs/getting-started/whats-included.md -------------------------------------------------------------------------------- /docs/docs/troubleshooting/_category_.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shift3/dj-starter/HEAD/docs/docs/troubleshooting/_category_.json -------------------------------------------------------------------------------- /docs/docs/troubleshooting/docker.md: -------------------------------------------------------------------------------- 1 | # Docker Issues 2 | -------------------------------------------------------------------------------- /docs/docusaurus.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shift3/dj-starter/HEAD/docs/docusaurus.config.js -------------------------------------------------------------------------------- /docs/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shift3/dj-starter/HEAD/docs/package-lock.json -------------------------------------------------------------------------------- /docs/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shift3/dj-starter/HEAD/docs/package.json -------------------------------------------------------------------------------- /docs/sidebars.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shift3/dj-starter/HEAD/docs/sidebars.js -------------------------------------------------------------------------------- /docs/src/components/HomepageFeatures/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shift3/dj-starter/HEAD/docs/src/components/HomepageFeatures/index.js -------------------------------------------------------------------------------- /docs/src/components/HomepageFeatures/styles.module.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shift3/dj-starter/HEAD/docs/src/components/HomepageFeatures/styles.module.css -------------------------------------------------------------------------------- /docs/src/css/custom.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shift3/dj-starter/HEAD/docs/src/css/custom.css -------------------------------------------------------------------------------- /docs/src/pages/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shift3/dj-starter/HEAD/docs/src/pages/index.js -------------------------------------------------------------------------------- /docs/src/pages/index.module.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shift3/dj-starter/HEAD/docs/src/pages/index.module.css -------------------------------------------------------------------------------- /docs/src/pages/markdown-page.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shift3/dj-starter/HEAD/docs/src/pages/markdown-page.md -------------------------------------------------------------------------------- /docs/static/.nojekyll: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /docs/static/img/docusaurus.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shift3/dj-starter/HEAD/docs/static/img/docusaurus.png -------------------------------------------------------------------------------- /docs/static/img/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shift3/dj-starter/HEAD/docs/static/img/favicon.ico -------------------------------------------------------------------------------- /docs/static/img/logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shift3/dj-starter/HEAD/docs/static/img/logo.svg -------------------------------------------------------------------------------- /docs/static/img/undraw_docusaurus_mountain.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shift3/dj-starter/HEAD/docs/static/img/undraw_docusaurus_mountain.svg -------------------------------------------------------------------------------- /docs/static/img/undraw_docusaurus_react.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shift3/dj-starter/HEAD/docs/static/img/undraw_docusaurus_react.svg -------------------------------------------------------------------------------- /docs/static/img/undraw_docusaurus_tree.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shift3/dj-starter/HEAD/docs/static/img/undraw_docusaurus_tree.svg -------------------------------------------------------------------------------- /docs/yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shift3/dj-starter/HEAD/docs/yarn.lock -------------------------------------------------------------------------------- /hooks/post_gen_project.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shift3/dj-starter/HEAD/hooks/post_gen_project.py -------------------------------------------------------------------------------- /hooks/pre_gen_project.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shift3/dj-starter/HEAD/hooks/pre_gen_project.py -------------------------------------------------------------------------------- /{{ cookiecutter.project_slug }}/.circleci/config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shift3/dj-starter/HEAD/{{ cookiecutter.project_slug }}/.circleci/config.yml -------------------------------------------------------------------------------- /{{ cookiecutter.project_slug }}/.devcontainer/devcontainer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shift3/dj-starter/HEAD/{{ cookiecutter.project_slug }}/.devcontainer/devcontainer.json -------------------------------------------------------------------------------- /{{ cookiecutter.project_slug }}/.devcontainer/docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shift3/dj-starter/HEAD/{{ cookiecutter.project_slug }}/.devcontainer/docker-compose.yml -------------------------------------------------------------------------------- /{{ cookiecutter.project_slug }}/.dockerignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shift3/dj-starter/HEAD/{{ cookiecutter.project_slug }}/.dockerignore -------------------------------------------------------------------------------- /{{ cookiecutter.project_slug }}/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shift3/dj-starter/HEAD/{{ cookiecutter.project_slug }}/.gitignore -------------------------------------------------------------------------------- /{{ cookiecutter.project_slug }}/.platform/nginx/conf.d/proxy.conf: -------------------------------------------------------------------------------- 1 | client_max_body_size 20M; 2 | -------------------------------------------------------------------------------- /{{ cookiecutter.project_slug }}/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shift3/dj-starter/HEAD/{{ cookiecutter.project_slug }}/Dockerfile -------------------------------------------------------------------------------- /{{ cookiecutter.project_slug }}/Dockerfile.prod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shift3/dj-starter/HEAD/{{ cookiecutter.project_slug }}/Dockerfile.prod -------------------------------------------------------------------------------- /{{ cookiecutter.project_slug }}/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shift3/dj-starter/HEAD/{{ cookiecutter.project_slug }}/LICENSE -------------------------------------------------------------------------------- /{{ cookiecutter.project_slug }}/Procfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shift3/dj-starter/HEAD/{{ cookiecutter.project_slug }}/Procfile -------------------------------------------------------------------------------- /{{ cookiecutter.project_slug }}/Procfile.prod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shift3/dj-starter/HEAD/{{ cookiecutter.project_slug }}/Procfile.prod -------------------------------------------------------------------------------- /{{ cookiecutter.project_slug }}/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shift3/dj-starter/HEAD/{{ cookiecutter.project_slug }}/README.md -------------------------------------------------------------------------------- /{{ cookiecutter.project_slug }}/docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shift3/dj-starter/HEAD/{{ cookiecutter.project_slug }}/docker-compose.yml -------------------------------------------------------------------------------- /{{ cookiecutter.project_slug }}/docs/01-browsable-api.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shift3/dj-starter/HEAD/{{ cookiecutter.project_slug }}/docs/01-browsable-api.png -------------------------------------------------------------------------------- /{{ cookiecutter.project_slug }}/docs/02-browsable-api.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shift3/dj-starter/HEAD/{{ cookiecutter.project_slug }}/docs/02-browsable-api.png -------------------------------------------------------------------------------- /{{ cookiecutter.project_slug }}/docs/03-browsable-api-debug-toolbar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shift3/dj-starter/HEAD/{{ cookiecutter.project_slug }}/docs/03-browsable-api-debug-toolbar.png -------------------------------------------------------------------------------- /{{ cookiecutter.project_slug }}/docs/04-mailhog.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shift3/dj-starter/HEAD/{{ cookiecutter.project_slug }}/docs/04-mailhog.png -------------------------------------------------------------------------------- /{{ cookiecutter.project_slug }}/entrypoint.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shift3/dj-starter/HEAD/{{ cookiecutter.project_slug }}/entrypoint.sh -------------------------------------------------------------------------------- /{{ cookiecutter.project_slug }}/locale/es/LC_MESSAGES/django.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shift3/dj-starter/HEAD/{{ cookiecutter.project_slug }}/locale/es/LC_MESSAGES/django.po -------------------------------------------------------------------------------- /{{ cookiecutter.project_slug }}/main.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shift3/dj-starter/HEAD/{{ cookiecutter.project_slug }}/main.tf -------------------------------------------------------------------------------- /{{ cookiecutter.project_slug }}/manage.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shift3/dj-starter/HEAD/{{ cookiecutter.project_slug }}/manage.py -------------------------------------------------------------------------------- /{{ cookiecutter.project_slug }}/prod.tfvars: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shift3/dj-starter/HEAD/{{ cookiecutter.project_slug }}/prod.tfvars -------------------------------------------------------------------------------- /{{ cookiecutter.project_slug }}/pytest.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shift3/dj-starter/HEAD/{{ cookiecutter.project_slug }}/pytest.ini -------------------------------------------------------------------------------- /{{ cookiecutter.project_slug }}/requirements/base.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shift3/dj-starter/HEAD/{{ cookiecutter.project_slug }}/requirements/base.txt -------------------------------------------------------------------------------- /{{ cookiecutter.project_slug }}/requirements/dev.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shift3/dj-starter/HEAD/{{ cookiecutter.project_slug }}/requirements/dev.txt -------------------------------------------------------------------------------- /{{ cookiecutter.project_slug }}/requirements/prod.txt: -------------------------------------------------------------------------------- 1 | -r base.txt 2 | 3 | # Production 4 | django-ses==3.2.0 5 | -------------------------------------------------------------------------------- /{{ cookiecutter.project_slug }}/requirements/test.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shift3/dj-starter/HEAD/{{ cookiecutter.project_slug }}/requirements/test.txt -------------------------------------------------------------------------------- /{{ cookiecutter.project_slug }}/scripts/update-circleci.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shift3/dj-starter/HEAD/{{ cookiecutter.project_slug }}/scripts/update-circleci.sh -------------------------------------------------------------------------------- /{{ cookiecutter.project_slug }}/setup.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shift3/dj-starter/HEAD/{{ cookiecutter.project_slug }}/setup.cfg -------------------------------------------------------------------------------- /{{ cookiecutter.project_slug }}/staging.tfvars: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shift3/dj-starter/HEAD/{{ cookiecutter.project_slug }}/staging.tfvars -------------------------------------------------------------------------------- /{{ cookiecutter.project_slug }}/variables.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shift3/dj-starter/HEAD/{{ cookiecutter.project_slug }}/variables.tf -------------------------------------------------------------------------------- /{{ cookiecutter.project_slug }}/wait_for_postgres.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shift3/dj-starter/HEAD/{{ cookiecutter.project_slug }}/wait_for_postgres.py -------------------------------------------------------------------------------- /{{ cookiecutter.project_slug }}/{{ cookiecutter.project_slug }}/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /{{ cookiecutter.project_slug }}/{{ cookiecutter.project_slug }}/agents/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /{{ cookiecutter.project_slug }}/{{ cookiecutter.project_slug }}/agents/admin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shift3/dj-starter/HEAD/{{ cookiecutter.project_slug }}/{{ cookiecutter.project_slug }}/agents/admin.py -------------------------------------------------------------------------------- /{{ cookiecutter.project_slug }}/{{ cookiecutter.project_slug }}/agents/apps.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shift3/dj-starter/HEAD/{{ cookiecutter.project_slug }}/{{ cookiecutter.project_slug }}/agents/apps.py -------------------------------------------------------------------------------- /{{ cookiecutter.project_slug }}/{{ cookiecutter.project_slug }}/agents/migrations/0001_initial.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shift3/dj-starter/HEAD/{{ cookiecutter.project_slug }}/{{ cookiecutter.project_slug }}/agents/migrations/0001_initial.py -------------------------------------------------------------------------------- /{{ cookiecutter.project_slug }}/{{ cookiecutter.project_slug }}/agents/migrations/0002_alter_agent_options_agent_created_agent_modified_and_more.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shift3/dj-starter/HEAD/{{ cookiecutter.project_slug }}/{{ cookiecutter.project_slug }}/agents/migrations/0002_alter_agent_options_agent_created_agent_modified_and_more.py -------------------------------------------------------------------------------- /{{ cookiecutter.project_slug }}/{{ cookiecutter.project_slug }}/agents/migrations/0003_alter_agent_options_agent_address_and_more.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shift3/dj-starter/HEAD/{{ cookiecutter.project_slug }}/{{ cookiecutter.project_slug }}/agents/migrations/0003_alter_agent_options_agent_address_and_more.py -------------------------------------------------------------------------------- /{{ cookiecutter.project_slug }}/{{ cookiecutter.project_slug }}/agents/migrations/0004_alter_agent_id_alter_historicalagent_id.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shift3/dj-starter/HEAD/{{ cookiecutter.project_slug }}/{{ cookiecutter.project_slug }}/agents/migrations/0004_alter_agent_id_alter_historicalagent_id.py -------------------------------------------------------------------------------- /{{ cookiecutter.project_slug }}/{{ cookiecutter.project_slug }}/agents/migrations/0005_alter_agent_options.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shift3/dj-starter/HEAD/{{ cookiecutter.project_slug }}/{{ cookiecutter.project_slug }}/agents/migrations/0005_alter_agent_options.py -------------------------------------------------------------------------------- /{{ cookiecutter.project_slug }}/{{ cookiecutter.project_slug }}/agents/migrations/0006_alter_historicalagent_options_and_more.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shift3/dj-starter/HEAD/{{ cookiecutter.project_slug }}/{{ cookiecutter.project_slug }}/agents/migrations/0006_alter_historicalagent_options_and_more.py -------------------------------------------------------------------------------- /{{ cookiecutter.project_slug }}/{{ cookiecutter.project_slug }}/agents/migrations/0007_agent_agents_agen_phone_n_6da118_idx.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shift3/dj-starter/HEAD/{{ cookiecutter.project_slug }}/{{ cookiecutter.project_slug }}/agents/migrations/0007_agent_agents_agen_phone_n_6da118_idx.py -------------------------------------------------------------------------------- /{{ cookiecutter.project_slug }}/{{ cookiecutter.project_slug }}/agents/migrations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /{{ cookiecutter.project_slug }}/{{ cookiecutter.project_slug }}/agents/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shift3/dj-starter/HEAD/{{ cookiecutter.project_slug }}/{{ cookiecutter.project_slug }}/agents/models.py -------------------------------------------------------------------------------- /{{ cookiecutter.project_slug }}/{{ cookiecutter.project_slug }}/agents/notifications.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shift3/dj-starter/HEAD/{{ cookiecutter.project_slug }}/{{ cookiecutter.project_slug }}/agents/notifications.py -------------------------------------------------------------------------------- /{{ cookiecutter.project_slug }}/{{ cookiecutter.project_slug }}/agents/serializers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shift3/dj-starter/HEAD/{{ cookiecutter.project_slug }}/{{ cookiecutter.project_slug }}/agents/serializers.py -------------------------------------------------------------------------------- /{{ cookiecutter.project_slug }}/{{ cookiecutter.project_slug }}/agents/signals.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shift3/dj-starter/HEAD/{{ cookiecutter.project_slug }}/{{ cookiecutter.project_slug }}/agents/signals.py -------------------------------------------------------------------------------- /{{ cookiecutter.project_slug }}/{{ cookiecutter.project_slug }}/agents/templates/notifications/agent_created_notification_email.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shift3/dj-starter/HEAD/{{ cookiecutter.project_slug }}/{{ cookiecutter.project_slug }}/agents/templates/notifications/agent_created_notification_email.html -------------------------------------------------------------------------------- /{{ cookiecutter.project_slug }}/{{ cookiecutter.project_slug }}/agents/tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shift3/dj-starter/HEAD/{{ cookiecutter.project_slug }}/{{ cookiecutter.project_slug }}/agents/tests.py -------------------------------------------------------------------------------- /{{ cookiecutter.project_slug }}/{{ cookiecutter.project_slug }}/agents/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shift3/dj-starter/HEAD/{{ cookiecutter.project_slug }}/{{ cookiecutter.project_slug }}/agents/views.py -------------------------------------------------------------------------------- /{{ cookiecutter.project_slug }}/{{ cookiecutter.project_slug }}/asgi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shift3/dj-starter/HEAD/{{ cookiecutter.project_slug }}/{{ cookiecutter.project_slug }}/asgi.py -------------------------------------------------------------------------------- /{{ cookiecutter.project_slug }}/{{ cookiecutter.project_slug }}/core/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /{{ cookiecutter.project_slug }}/{{ cookiecutter.project_slug }}/core/admin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shift3/dj-starter/HEAD/{{ cookiecutter.project_slug }}/{{ cookiecutter.project_slug }}/core/admin.py -------------------------------------------------------------------------------- /{{ cookiecutter.project_slug }}/{{ cookiecutter.project_slug }}/core/apps.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shift3/dj-starter/HEAD/{{ cookiecutter.project_slug }}/{{ cookiecutter.project_slug }}/core/apps.py -------------------------------------------------------------------------------- /{{ cookiecutter.project_slug }}/{{ cookiecutter.project_slug }}/core/channelmanager.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shift3/dj-starter/HEAD/{{ cookiecutter.project_slug }}/{{ cookiecutter.project_slug }}/core/channelmanager.py -------------------------------------------------------------------------------- /{{ cookiecutter.project_slug }}/{{ cookiecutter.project_slug }}/core/fields.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shift3/dj-starter/HEAD/{{ cookiecutter.project_slug }}/{{ cookiecutter.project_slug }}/core/fields.py -------------------------------------------------------------------------------- /{{ cookiecutter.project_slug }}/{{ cookiecutter.project_slug }}/core/filters.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shift3/dj-starter/HEAD/{{ cookiecutter.project_slug }}/{{ cookiecutter.project_slug }}/core/filters.py -------------------------------------------------------------------------------- /{{ cookiecutter.project_slug }}/{{ cookiecutter.project_slug }}/core/management/commands/createsu.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shift3/dj-starter/HEAD/{{ cookiecutter.project_slug }}/{{ cookiecutter.project_slug }}/core/management/commands/createsu.py -------------------------------------------------------------------------------- /{{ cookiecutter.project_slug }}/{{ cookiecutter.project_slug }}/core/middleware.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shift3/dj-starter/HEAD/{{ cookiecutter.project_slug }}/{{ cookiecutter.project_slug }}/core/middleware.py -------------------------------------------------------------------------------- /{{ cookiecutter.project_slug }}/{{ cookiecutter.project_slug }}/core/migrations/0001_initial.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shift3/dj-starter/HEAD/{{ cookiecutter.project_slug }}/{{ cookiecutter.project_slug }}/core/migrations/0001_initial.py -------------------------------------------------------------------------------- /{{ cookiecutter.project_slug }}/{{ cookiecutter.project_slug }}/core/migrations/0002_alter_address_address1_alter_address_address2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shift3/dj-starter/HEAD/{{ cookiecutter.project_slug }}/{{ cookiecutter.project_slug }}/core/migrations/0002_alter_address_address1_alter_address_address2.py -------------------------------------------------------------------------------- /{{ cookiecutter.project_slug }}/{{ cookiecutter.project_slug }}/core/migrations/0003_alter_address_zip_code.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shift3/dj-starter/HEAD/{{ cookiecutter.project_slug }}/{{ cookiecutter.project_slug }}/core/migrations/0003_alter_address_zip_code.py -------------------------------------------------------------------------------- /{{ cookiecutter.project_slug }}/{{ cookiecutter.project_slug }}/core/migrations/0004_databasenotification.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shift3/dj-starter/HEAD/{{ cookiecutter.project_slug }}/{{ cookiecutter.project_slug }}/core/migrations/0004_databasenotification.py -------------------------------------------------------------------------------- /{{ cookiecutter.project_slug }}/{{ cookiecutter.project_slug }}/core/migrations/0005_delete_databasenotification.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shift3/dj-starter/HEAD/{{ cookiecutter.project_slug }}/{{ cookiecutter.project_slug }}/core/migrations/0005_delete_databasenotification.py -------------------------------------------------------------------------------- /{{ cookiecutter.project_slug }}/{{ cookiecutter.project_slug }}/core/migrations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /{{ cookiecutter.project_slug }}/{{ cookiecutter.project_slug }}/core/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shift3/dj-starter/HEAD/{{ cookiecutter.project_slug }}/{{ cookiecutter.project_slug }}/core/models.py -------------------------------------------------------------------------------- /{{ cookiecutter.project_slug }}/{{ cookiecutter.project_slug }}/core/pagination.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shift3/dj-starter/HEAD/{{ cookiecutter.project_slug }}/{{ cookiecutter.project_slug }}/core/pagination.py -------------------------------------------------------------------------------- /{{ cookiecutter.project_slug }}/{{ cookiecutter.project_slug }}/core/serializers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shift3/dj-starter/HEAD/{{ cookiecutter.project_slug }}/{{ cookiecutter.project_slug }}/core/serializers.py -------------------------------------------------------------------------------- /{{ cookiecutter.project_slug }}/{{ cookiecutter.project_slug }}/core/tasks.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shift3/dj-starter/HEAD/{{ cookiecutter.project_slug }}/{{ cookiecutter.project_slug }}/core/tasks.py -------------------------------------------------------------------------------- /{{ cookiecutter.project_slug }}/{{ cookiecutter.project_slug }}/core/tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shift3/dj-starter/HEAD/{{ cookiecutter.project_slug }}/{{ cookiecutter.project_slug }}/core/tests.py -------------------------------------------------------------------------------- /{{ cookiecutter.project_slug }}/{{ cookiecutter.project_slug }}/core/validators.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shift3/dj-starter/HEAD/{{ cookiecutter.project_slug }}/{{ cookiecutter.project_slug }}/core/validators.py -------------------------------------------------------------------------------- /{{ cookiecutter.project_slug }}/{{ cookiecutter.project_slug }}/core/views.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /{{ cookiecutter.project_slug }}/{{ cookiecutter.project_slug }}/notification_system/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /{{ cookiecutter.project_slug }}/{{ cookiecutter.project_slug }}/notification_system/admin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shift3/dj-starter/HEAD/{{ cookiecutter.project_slug }}/{{ cookiecutter.project_slug }}/notification_system/admin.py -------------------------------------------------------------------------------- /{{ cookiecutter.project_slug }}/{{ cookiecutter.project_slug }}/notification_system/apps.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shift3/dj-starter/HEAD/{{ cookiecutter.project_slug }}/{{ cookiecutter.project_slug }}/notification_system/apps.py -------------------------------------------------------------------------------- /{{ cookiecutter.project_slug }}/{{ cookiecutter.project_slug }}/notification_system/backends.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shift3/dj-starter/HEAD/{{ cookiecutter.project_slug }}/{{ cookiecutter.project_slug }}/notification_system/backends.py -------------------------------------------------------------------------------- /{{ cookiecutter.project_slug }}/{{ cookiecutter.project_slug }}/notification_system/management/commands/createnotification.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shift3/dj-starter/HEAD/{{ cookiecutter.project_slug }}/{{ cookiecutter.project_slug }}/notification_system/management/commands/createnotification.py -------------------------------------------------------------------------------- /{{ cookiecutter.project_slug }}/{{ cookiecutter.project_slug }}/notification_system/management/commands/notification_template.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shift3/dj-starter/HEAD/{{ cookiecutter.project_slug }}/{{ cookiecutter.project_slug }}/notification_system/management/commands/notification_template.py -------------------------------------------------------------------------------- /{{ cookiecutter.project_slug }}/{{ cookiecutter.project_slug }}/notification_system/migrations/0001_initial.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shift3/dj-starter/HEAD/{{ cookiecutter.project_slug }}/{{ cookiecutter.project_slug }}/notification_system/migrations/0001_initial.py -------------------------------------------------------------------------------- /{{ cookiecutter.project_slug }}/{{ cookiecutter.project_slug }}/notification_system/migrations/0002_alter_databasenotification_options_and_more.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shift3/dj-starter/HEAD/{{ cookiecutter.project_slug }}/{{ cookiecutter.project_slug }}/notification_system/migrations/0002_alter_databasenotification_options_and_more.py -------------------------------------------------------------------------------- /{{ cookiecutter.project_slug }}/{{ cookiecutter.project_slug }}/notification_system/migrations/0003_alter_databasenotification_options.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shift3/dj-starter/HEAD/{{ cookiecutter.project_slug }}/{{ cookiecutter.project_slug }}/notification_system/migrations/0003_alter_databasenotification_options.py -------------------------------------------------------------------------------- /{{ cookiecutter.project_slug }}/{{ cookiecutter.project_slug }}/notification_system/migrations/0004_databasenotification_notificatio_type_3c12e3_idx_and_more.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shift3/dj-starter/HEAD/{{ cookiecutter.project_slug }}/{{ cookiecutter.project_slug }}/notification_system/migrations/0004_databasenotification_notificatio_type_3c12e3_idx_and_more.py -------------------------------------------------------------------------------- /{{ cookiecutter.project_slug }}/{{ cookiecutter.project_slug }}/notification_system/migrations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /{{ cookiecutter.project_slug }}/{{ cookiecutter.project_slug }}/notification_system/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shift3/dj-starter/HEAD/{{ cookiecutter.project_slug }}/{{ cookiecutter.project_slug }}/notification_system/models.py -------------------------------------------------------------------------------- /{{ cookiecutter.project_slug }}/{{ cookiecutter.project_slug }}/notification_system/notifications.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shift3/dj-starter/HEAD/{{ cookiecutter.project_slug }}/{{ cookiecutter.project_slug }}/notification_system/notifications.py -------------------------------------------------------------------------------- /{{ cookiecutter.project_slug }}/{{ cookiecutter.project_slug }}/notification_system/serializers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shift3/dj-starter/HEAD/{{ cookiecutter.project_slug }}/{{ cookiecutter.project_slug }}/notification_system/serializers.py -------------------------------------------------------------------------------- /{{ cookiecutter.project_slug }}/{{ cookiecutter.project_slug }}/notification_system/tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shift3/dj-starter/HEAD/{{ cookiecutter.project_slug }}/{{ cookiecutter.project_slug }}/notification_system/tests.py -------------------------------------------------------------------------------- /{{ cookiecutter.project_slug }}/{{ cookiecutter.project_slug }}/notification_system/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shift3/dj-starter/HEAD/{{ cookiecutter.project_slug }}/{{ cookiecutter.project_slug }}/notification_system/views.py -------------------------------------------------------------------------------- /{{ cookiecutter.project_slug }}/{{ cookiecutter.project_slug }}/settings/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /{{ cookiecutter.project_slug }}/{{ cookiecutter.project_slug }}/settings/base.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shift3/dj-starter/HEAD/{{ cookiecutter.project_slug }}/{{ cookiecutter.project_slug }}/settings/base.py -------------------------------------------------------------------------------- /{{ cookiecutter.project_slug }}/{{ cookiecutter.project_slug }}/settings/dev.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shift3/dj-starter/HEAD/{{ cookiecutter.project_slug }}/{{ cookiecutter.project_slug }}/settings/dev.py -------------------------------------------------------------------------------- /{{ cookiecutter.project_slug }}/{{ cookiecutter.project_slug }}/settings/prod.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shift3/dj-starter/HEAD/{{ cookiecutter.project_slug }}/{{ cookiecutter.project_slug }}/settings/prod.py -------------------------------------------------------------------------------- /{{ cookiecutter.project_slug }}/{{ cookiecutter.project_slug }}/settings/staging.py: -------------------------------------------------------------------------------- 1 | from .prod import * -------------------------------------------------------------------------------- /{{ cookiecutter.project_slug }}/{{ cookiecutter.project_slug }}/settings/test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shift3/dj-starter/HEAD/{{ cookiecutter.project_slug }}/{{ cookiecutter.project_slug }}/settings/test.py -------------------------------------------------------------------------------- /{{ cookiecutter.project_slug }}/{{ cookiecutter.project_slug }}/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shift3/dj-starter/HEAD/{{ cookiecutter.project_slug }}/{{ cookiecutter.project_slug }}/urls.py -------------------------------------------------------------------------------- /{{ cookiecutter.project_slug }}/{{ cookiecutter.project_slug }}/users/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /{{ cookiecutter.project_slug }}/{{ cookiecutter.project_slug }}/users/admin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shift3/dj-starter/HEAD/{{ cookiecutter.project_slug }}/{{ cookiecutter.project_slug }}/users/admin.py -------------------------------------------------------------------------------- /{{ cookiecutter.project_slug }}/{{ cookiecutter.project_slug }}/users/apps.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shift3/dj-starter/HEAD/{{ cookiecutter.project_slug }}/{{ cookiecutter.project_slug }}/users/apps.py -------------------------------------------------------------------------------- /{{ cookiecutter.project_slug }}/{{ cookiecutter.project_slug }}/users/email.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shift3/dj-starter/HEAD/{{ cookiecutter.project_slug }}/{{ cookiecutter.project_slug }}/users/email.py -------------------------------------------------------------------------------- /{{ cookiecutter.project_slug }}/{{ cookiecutter.project_slug }}/users/migrations/0001_initial.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shift3/dj-starter/HEAD/{{ cookiecutter.project_slug }}/{{ cookiecutter.project_slug }}/users/migrations/0001_initial.py -------------------------------------------------------------------------------- /{{ cookiecutter.project_slug }}/{{ cookiecutter.project_slug }}/users/migrations/0002_auto_20171227_2246.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shift3/dj-starter/HEAD/{{ cookiecutter.project_slug }}/{{ cookiecutter.project_slug }}/users/migrations/0002_auto_20171227_2246.py -------------------------------------------------------------------------------- /{{ cookiecutter.project_slug }}/{{ cookiecutter.project_slug }}/users/migrations/0003_alter_user_options_alter_user_managers_and_more.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shift3/dj-starter/HEAD/{{ cookiecutter.project_slug }}/{{ cookiecutter.project_slug }}/users/migrations/0003_alter_user_options_alter_user_managers_and_more.py -------------------------------------------------------------------------------- /{{ cookiecutter.project_slug }}/{{ cookiecutter.project_slug }}/users/migrations/0004_alter_user_options_alter_user_managers_and_more.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shift3/dj-starter/HEAD/{{ cookiecutter.project_slug }}/{{ cookiecutter.project_slug }}/users/migrations/0004_alter_user_options_alter_user_managers_and_more.py -------------------------------------------------------------------------------- /{{ cookiecutter.project_slug }}/{{ cookiecutter.project_slug }}/users/migrations/0005_alter_user_managers_remove_user_username_and_more.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shift3/dj-starter/HEAD/{{ cookiecutter.project_slug }}/{{ cookiecutter.project_slug }}/users/migrations/0005_alter_user_managers_remove_user_username_and_more.py -------------------------------------------------------------------------------- /{{ cookiecutter.project_slug }}/{{ cookiecutter.project_slug }}/users/migrations/0006_user_created_user_modified.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shift3/dj-starter/HEAD/{{ cookiecutter.project_slug }}/{{ cookiecutter.project_slug }}/users/migrations/0006_user_created_user_modified.py -------------------------------------------------------------------------------- /{{ cookiecutter.project_slug }}/{{ cookiecutter.project_slug }}/users/migrations/0007_user_profile_picture.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shift3/dj-starter/HEAD/{{ cookiecutter.project_slug }}/{{ cookiecutter.project_slug }}/users/migrations/0007_user_profile_picture.py -------------------------------------------------------------------------------- /{{ cookiecutter.project_slug }}/{{ cookiecutter.project_slug }}/users/migrations/0008_alter_user_options_user_users_user_email_6f2530_idx_and_more.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shift3/dj-starter/HEAD/{{ cookiecutter.project_slug }}/{{ cookiecutter.project_slug }}/users/migrations/0008_alter_user_options_user_users_user_email_6f2530_idx_and_more.py -------------------------------------------------------------------------------- /{{ cookiecutter.project_slug }}/{{ cookiecutter.project_slug }}/users/migrations/0009_historicaluser.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shift3/dj-starter/HEAD/{{ cookiecutter.project_slug }}/{{ cookiecutter.project_slug }}/users/migrations/0009_historicaluser.py -------------------------------------------------------------------------------- /{{ cookiecutter.project_slug }}/{{ cookiecutter.project_slug }}/users/migrations/0010_historicaluser_activated_at_user_activated_at.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shift3/dj-starter/HEAD/{{ cookiecutter.project_slug }}/{{ cookiecutter.project_slug }}/users/migrations/0010_historicaluser_activated_at_user_activated_at.py -------------------------------------------------------------------------------- /{{ cookiecutter.project_slug }}/{{ cookiecutter.project_slug }}/users/migrations/0011_alter_user_profile_picture.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shift3/dj-starter/HEAD/{{ cookiecutter.project_slug }}/{{ cookiecutter.project_slug }}/users/migrations/0011_alter_user_profile_picture.py -------------------------------------------------------------------------------- /{{ cookiecutter.project_slug }}/{{ cookiecutter.project_slug }}/users/migrations/0012_alter_historicaluser_is_active_alter_user_is_active.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shift3/dj-starter/HEAD/{{ cookiecutter.project_slug }}/{{ cookiecutter.project_slug }}/users/migrations/0012_alter_historicaluser_is_active_alter_user_is_active.py -------------------------------------------------------------------------------- /{{ cookiecutter.project_slug }}/{{ cookiecutter.project_slug }}/users/migrations/0013_historicaluser_new_email_user_new_email.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shift3/dj-starter/HEAD/{{ cookiecutter.project_slug }}/{{ cookiecutter.project_slug }}/users/migrations/0013_historicaluser_new_email_user_new_email.py -------------------------------------------------------------------------------- /{{ cookiecutter.project_slug }}/{{ cookiecutter.project_slug }}/users/migrations/0014_alter_user_profile_picture.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shift3/dj-starter/HEAD/{{ cookiecutter.project_slug }}/{{ cookiecutter.project_slug }}/users/migrations/0014_alter_user_profile_picture.py -------------------------------------------------------------------------------- /{{ cookiecutter.project_slug }}/{{ cookiecutter.project_slug }}/users/migrations/0015_remove_historicaluser_password.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shift3/dj-starter/HEAD/{{ cookiecutter.project_slug }}/{{ cookiecutter.project_slug }}/users/migrations/0015_remove_historicaluser_password.py -------------------------------------------------------------------------------- /{{ cookiecutter.project_slug }}/{{ cookiecutter.project_slug }}/users/migrations/0016_historicaluser_phone_number_user_phone_number_and_more.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shift3/dj-starter/HEAD/{{ cookiecutter.project_slug }}/{{ cookiecutter.project_slug }}/users/migrations/0016_historicaluser_phone_number_user_phone_number_and_more.py -------------------------------------------------------------------------------- /{{ cookiecutter.project_slug }}/{{ cookiecutter.project_slug }}/users/migrations/0017_alter_historicaluser_options_and_more.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shift3/dj-starter/HEAD/{{ cookiecutter.project_slug }}/{{ cookiecutter.project_slug }}/users/migrations/0017_alter_historicaluser_options_and_more.py -------------------------------------------------------------------------------- /{{ cookiecutter.project_slug }}/{{ cookiecutter.project_slug }}/users/migrations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /{{ cookiecutter.project_slug }}/{{ cookiecutter.project_slug }}/users/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shift3/dj-starter/HEAD/{{ cookiecutter.project_slug }}/{{ cookiecutter.project_slug }}/users/models.py -------------------------------------------------------------------------------- /{{ cookiecutter.project_slug }}/{{ cookiecutter.project_slug }}/users/permissions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shift3/dj-starter/HEAD/{{ cookiecutter.project_slug }}/{{ cookiecutter.project_slug }}/users/permissions.py -------------------------------------------------------------------------------- /{{ cookiecutter.project_slug }}/{{ cookiecutter.project_slug }}/users/serializers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shift3/dj-starter/HEAD/{{ cookiecutter.project_slug }}/{{ cookiecutter.project_slug }}/users/serializers.py -------------------------------------------------------------------------------- /{{ cookiecutter.project_slug }}/{{ cookiecutter.project_slug }}/users/signals.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shift3/dj-starter/HEAD/{{ cookiecutter.project_slug }}/{{ cookiecutter.project_slug }}/users/signals.py -------------------------------------------------------------------------------- /{{ cookiecutter.project_slug }}/{{ cookiecutter.project_slug }}/users/templates/email/change_email_request.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shift3/dj-starter/HEAD/{{ cookiecutter.project_slug }}/{{ cookiecutter.project_slug }}/users/templates/email/change_email_request.html -------------------------------------------------------------------------------- /{{ cookiecutter.project_slug }}/{{ cookiecutter.project_slug }}/users/templates/email/custom_activation.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shift3/dj-starter/HEAD/{{ cookiecutter.project_slug }}/{{ cookiecutter.project_slug }}/users/templates/email/custom_activation.html -------------------------------------------------------------------------------- /{{ cookiecutter.project_slug }}/{{ cookiecutter.project_slug }}/users/templates/email/custom_password_reset.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shift3/dj-starter/HEAD/{{ cookiecutter.project_slug }}/{{ cookiecutter.project_slug }}/users/templates/email/custom_password_reset.html -------------------------------------------------------------------------------- /{{ cookiecutter.project_slug }}/{{ cookiecutter.project_slug }}/users/test/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /{{ cookiecutter.project_slug }}/{{ cookiecutter.project_slug }}/users/test/factories.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shift3/dj-starter/HEAD/{{ cookiecutter.project_slug }}/{{ cookiecutter.project_slug }}/users/test/factories.py -------------------------------------------------------------------------------- /{{ cookiecutter.project_slug }}/{{ cookiecutter.project_slug }}/users/test/test_models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shift3/dj-starter/HEAD/{{ cookiecutter.project_slug }}/{{ cookiecutter.project_slug }}/users/test/test_models.py -------------------------------------------------------------------------------- /{{ cookiecutter.project_slug }}/{{ cookiecutter.project_slug }}/users/test/test_serializers.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /{{ cookiecutter.project_slug }}/{{ cookiecutter.project_slug }}/users/test/test_views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shift3/dj-starter/HEAD/{{ cookiecutter.project_slug }}/{{ cookiecutter.project_slug }}/users/test/test_views.py -------------------------------------------------------------------------------- /{{ cookiecutter.project_slug }}/{{ cookiecutter.project_slug }}/users/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shift3/dj-starter/HEAD/{{ cookiecutter.project_slug }}/{{ cookiecutter.project_slug }}/users/views.py -------------------------------------------------------------------------------- /{{ cookiecutter.project_slug }}/{{ cookiecutter.project_slug }}/wsgi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shift3/dj-starter/HEAD/{{ cookiecutter.project_slug }}/{{ cookiecutter.project_slug }}/wsgi.py --------------------------------------------------------------------------------