├── .gitignore ├── Dockerfile ├── LICENSE ├── README.md ├── package.json ├── railway.toml ├── rav.yaml ├── requirements.dev.txt ├── requirements.txt ├── saas.code-workspace ├── src ├── auth │ ├── __init__.py │ ├── admin.py │ ├── apps.py │ ├── migrations │ │ └── __init__.py │ ├── models.py │ ├── tests.py │ └── views.py ├── cfehome │ ├── __init__.py │ ├── asgi.py │ ├── hosts.py │ ├── installed.py │ ├── settings.py │ ├── urls.py │ ├── views.py │ └── wsgi.py ├── checkouts │ ├── __init__.py │ ├── admin.py │ ├── apps.py │ ├── migrations │ │ └── __init__.py │ ├── models.py │ ├── tests.py │ └── views.py ├── commando │ ├── __init__.py │ ├── admin.py │ ├── apps.py │ ├── management │ │ ├── __init__.py │ │ └── commands │ │ │ ├── __init__.py │ │ │ ├── db_branch.py │ │ │ ├── drop_schema.py │ │ │ ├── hello_world.py │ │ │ ├── init_schema.py │ │ │ ├── migrate_dynamic_db.py │ │ │ ├── migrate_schema.py │ │ │ ├── migrate_schema_basic.py │ │ │ └── vendor_pull.py │ ├── migrations │ │ └── __init__.py │ ├── models.py │ ├── tests.py │ └── views.py ├── customers │ ├── __init__.py │ ├── admin.py │ ├── apps.py │ ├── migrations │ │ ├── 0001_initial.py │ │ ├── 0002_customer_init_email_customer_init_email_confirmed.py │ │ └── __init__.py │ ├── models.py │ ├── tests.py │ └── views.py ├── dashboard │ ├── __init__.py │ ├── admin.py │ ├── apps.py │ ├── migrations │ │ └── __init__.py │ ├── models.py │ ├── tests.py │ └── views.py ├── enterprises │ ├── __init__.py │ ├── admin.py │ ├── apps.py │ ├── migrations │ │ └── __init__.py │ ├── models.py │ ├── tests.py │ ├── urls.py │ └── views.py ├── helpers │ ├── __init__.py │ ├── billing.py │ ├── date_utils.py │ ├── db │ │ ├── __init__.py │ │ ├── context │ │ │ ├── __init__.py │ │ │ └── managers.py │ │ ├── engine │ │ │ ├── __init__.py │ │ │ └── base.py │ │ ├── schemas.py │ │ ├── statements.py │ │ └── validators.py │ ├── downloader.py │ ├── middleware │ │ ├── __init__.py │ │ └── schemas.py │ ├── neonctl │ │ ├── __init__.py │ │ └── clients.py │ ├── numbers.py │ └── security │ │ ├── __init__.py │ │ └── blocked_lists.py ├── landing │ ├── __init__.py │ ├── admin.py │ ├── apps.py │ ├── migrations │ │ └── __init__.py │ ├── models.py │ ├── tests.py │ └── views.py ├── manage.py ├── profiles │ ├── __init__.py │ ├── admin.py │ ├── apps.py │ ├── migrations │ │ └── __init__.py │ ├── models.py │ ├── tests.py │ ├── urls.py │ └── views.py ├── requirements │ ├── dev.in │ └── prod.in ├── staticfiles │ ├── base_tailwind │ │ └── tailwind-input.css │ ├── images │ │ └── flowbite-phone-mockup.png │ ├── theme │ │ └── saas-theme.min.css │ └── vendors │ │ ├── flowbite.min.css │ │ ├── flowbite.min.js │ │ ├── flowbite.min.js.map │ │ └── saas-theme.min.css ├── subscriptions │ ├── __init__.py │ ├── admin.py │ ├── apps.py │ ├── management │ │ ├── __init__.py │ │ └── commands │ │ │ ├── __init__.py │ │ │ ├── sync_permissions.py │ │ │ └── sync_user_subs.py │ ├── migrations │ │ ├── 0001_initial.py │ │ ├── 0002_alter_subscription_options.py │ │ ├── 0003_subscription_groups.py │ │ ├── 0004_subscription_permissions.py │ │ ├── 0005_alter_subscription_permissions.py │ │ ├── 0006_subscription_active.py │ │ ├── 0007_usersubscription.py │ │ ├── 0008_subscription_stripe_id.py │ │ ├── 0009_subscriptionprice.py │ │ ├── 0010_subscriptionprice_featured_subscriptionprice_order.py │ │ ├── 0011_subscriptionprice_timestamp_and_more.py │ │ ├── 0012_alter_subscriptionprice_options.py │ │ ├── 0013_alter_subscription_options_subscription_featured_and_more.py │ │ ├── 0014_alter_subscriptionprice_options.py │ │ ├── 0015_subscription_features.py │ │ ├── 0016_subscription_subtitle.py │ │ ├── 0017_usersubscription_stripe_id.py │ │ ├── 0018_usersubscription_user_cancelled.py │ │ ├── 0019_usersubscription_current_period_end_and_more.py │ │ ├── 0020_usersubscription_status.py │ │ ├── 0021_usersubscription_cancel_at_period_end.py │ │ ├── 0022_usersubscription_timestamp_usersubscription_updated.py │ │ └── __init__.py │ ├── models.py │ ├── tests.py │ ├── timing.md │ ├── utils.py │ └── views.py ├── templates │ ├── allauth │ │ └── layouts │ │ │ └── base.html │ ├── auth │ │ ├── login.html │ │ └── register.html │ ├── base.html │ ├── base │ │ ├── css.html │ │ ├── js.html │ │ └── messages.html │ ├── checkout │ │ └── success.html │ ├── dashboard │ │ ├── base.html │ │ ├── main.html │ │ ├── nav.html │ │ └── sidebar.html │ ├── landing │ │ ├── features.html │ │ ├── hero.html │ │ ├── main.html │ │ └── proof.html │ ├── nav │ │ └── navbar.html │ ├── profiles │ │ ├── detail.html │ │ └── list.html │ ├── protected │ │ ├── entry.html │ │ ├── user-only.html │ │ └── view.html │ ├── snippets │ │ └── welcome-user-msg.html │ ├── subscriptions │ │ ├── pricing.html │ │ ├── snippets │ │ │ └── pricing-card.html │ │ ├── user_cancel_view.html │ │ └── user_detail_view.html │ └── tenants │ │ ├── detail.html │ │ ├── list.html │ │ └── new-user.html ├── tenants │ ├── __init__.py │ ├── admin.py │ ├── apps.py │ ├── migrations │ │ ├── 0001_initial.py │ │ ├── 0002_alter_tenant_subdomain.py │ │ └── __init__.py │ ├── models.py │ ├── tasks.py │ ├── tests.py │ ├── urls.py │ ├── utils.py │ └── views.py └── visits │ ├── __init__.py │ ├── admin.py │ ├── apps.py │ ├── migrations │ ├── 0001_initial.py │ ├── 0002_pagevisit_user.py │ └── __init__.py │ ├── models.py │ ├── tests.py │ └── views.py └── tailwind.config.js /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codingforentrepreneurs/SaaS-for-Enterprise-with-Django/HEAD/.gitignore -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codingforentrepreneurs/SaaS-for-Enterprise-with-Django/HEAD/Dockerfile -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codingforentrepreneurs/SaaS-for-Enterprise-with-Django/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codingforentrepreneurs/SaaS-for-Enterprise-with-Django/HEAD/README.md -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codingforentrepreneurs/SaaS-for-Enterprise-with-Django/HEAD/package.json -------------------------------------------------------------------------------- /railway.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codingforentrepreneurs/SaaS-for-Enterprise-with-Django/HEAD/railway.toml -------------------------------------------------------------------------------- /rav.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codingforentrepreneurs/SaaS-for-Enterprise-with-Django/HEAD/rav.yaml -------------------------------------------------------------------------------- /requirements.dev.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codingforentrepreneurs/SaaS-for-Enterprise-with-Django/HEAD/requirements.dev.txt -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codingforentrepreneurs/SaaS-for-Enterprise-with-Django/HEAD/requirements.txt -------------------------------------------------------------------------------- /saas.code-workspace: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codingforentrepreneurs/SaaS-for-Enterprise-with-Django/HEAD/saas.code-workspace -------------------------------------------------------------------------------- /src/auth/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/auth/admin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codingforentrepreneurs/SaaS-for-Enterprise-with-Django/HEAD/src/auth/admin.py -------------------------------------------------------------------------------- /src/auth/apps.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codingforentrepreneurs/SaaS-for-Enterprise-with-Django/HEAD/src/auth/apps.py -------------------------------------------------------------------------------- /src/auth/migrations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/auth/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codingforentrepreneurs/SaaS-for-Enterprise-with-Django/HEAD/src/auth/models.py -------------------------------------------------------------------------------- /src/auth/tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codingforentrepreneurs/SaaS-for-Enterprise-with-Django/HEAD/src/auth/tests.py -------------------------------------------------------------------------------- /src/auth/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codingforentrepreneurs/SaaS-for-Enterprise-with-Django/HEAD/src/auth/views.py -------------------------------------------------------------------------------- /src/cfehome/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/cfehome/asgi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codingforentrepreneurs/SaaS-for-Enterprise-with-Django/HEAD/src/cfehome/asgi.py -------------------------------------------------------------------------------- /src/cfehome/hosts.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codingforentrepreneurs/SaaS-for-Enterprise-with-Django/HEAD/src/cfehome/hosts.py -------------------------------------------------------------------------------- /src/cfehome/installed.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codingforentrepreneurs/SaaS-for-Enterprise-with-Django/HEAD/src/cfehome/installed.py -------------------------------------------------------------------------------- /src/cfehome/settings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codingforentrepreneurs/SaaS-for-Enterprise-with-Django/HEAD/src/cfehome/settings.py -------------------------------------------------------------------------------- /src/cfehome/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codingforentrepreneurs/SaaS-for-Enterprise-with-Django/HEAD/src/cfehome/urls.py -------------------------------------------------------------------------------- /src/cfehome/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codingforentrepreneurs/SaaS-for-Enterprise-with-Django/HEAD/src/cfehome/views.py -------------------------------------------------------------------------------- /src/cfehome/wsgi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codingforentrepreneurs/SaaS-for-Enterprise-with-Django/HEAD/src/cfehome/wsgi.py -------------------------------------------------------------------------------- /src/checkouts/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/checkouts/admin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codingforentrepreneurs/SaaS-for-Enterprise-with-Django/HEAD/src/checkouts/admin.py -------------------------------------------------------------------------------- /src/checkouts/apps.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codingforentrepreneurs/SaaS-for-Enterprise-with-Django/HEAD/src/checkouts/apps.py -------------------------------------------------------------------------------- /src/checkouts/migrations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/checkouts/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codingforentrepreneurs/SaaS-for-Enterprise-with-Django/HEAD/src/checkouts/models.py -------------------------------------------------------------------------------- /src/checkouts/tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codingforentrepreneurs/SaaS-for-Enterprise-with-Django/HEAD/src/checkouts/tests.py -------------------------------------------------------------------------------- /src/checkouts/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codingforentrepreneurs/SaaS-for-Enterprise-with-Django/HEAD/src/checkouts/views.py -------------------------------------------------------------------------------- /src/commando/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/commando/admin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codingforentrepreneurs/SaaS-for-Enterprise-with-Django/HEAD/src/commando/admin.py -------------------------------------------------------------------------------- /src/commando/apps.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codingforentrepreneurs/SaaS-for-Enterprise-with-Django/HEAD/src/commando/apps.py -------------------------------------------------------------------------------- /src/commando/management/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/commando/management/commands/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/commando/management/commands/db_branch.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codingforentrepreneurs/SaaS-for-Enterprise-with-Django/HEAD/src/commando/management/commands/db_branch.py -------------------------------------------------------------------------------- /src/commando/management/commands/drop_schema.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codingforentrepreneurs/SaaS-for-Enterprise-with-Django/HEAD/src/commando/management/commands/drop_schema.py -------------------------------------------------------------------------------- /src/commando/management/commands/hello_world.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codingforentrepreneurs/SaaS-for-Enterprise-with-Django/HEAD/src/commando/management/commands/hello_world.py -------------------------------------------------------------------------------- /src/commando/management/commands/init_schema.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codingforentrepreneurs/SaaS-for-Enterprise-with-Django/HEAD/src/commando/management/commands/init_schema.py -------------------------------------------------------------------------------- /src/commando/management/commands/migrate_dynamic_db.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codingforentrepreneurs/SaaS-for-Enterprise-with-Django/HEAD/src/commando/management/commands/migrate_dynamic_db.py -------------------------------------------------------------------------------- /src/commando/management/commands/migrate_schema.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codingforentrepreneurs/SaaS-for-Enterprise-with-Django/HEAD/src/commando/management/commands/migrate_schema.py -------------------------------------------------------------------------------- /src/commando/management/commands/migrate_schema_basic.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codingforentrepreneurs/SaaS-for-Enterprise-with-Django/HEAD/src/commando/management/commands/migrate_schema_basic.py -------------------------------------------------------------------------------- /src/commando/management/commands/vendor_pull.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codingforentrepreneurs/SaaS-for-Enterprise-with-Django/HEAD/src/commando/management/commands/vendor_pull.py -------------------------------------------------------------------------------- /src/commando/migrations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/commando/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codingforentrepreneurs/SaaS-for-Enterprise-with-Django/HEAD/src/commando/models.py -------------------------------------------------------------------------------- /src/commando/tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codingforentrepreneurs/SaaS-for-Enterprise-with-Django/HEAD/src/commando/tests.py -------------------------------------------------------------------------------- /src/commando/views.py: -------------------------------------------------------------------------------- 1 | from django.shortcuts import render 2 | 3 | # Create your views here. 4 | -------------------------------------------------------------------------------- /src/customers/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/customers/admin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codingforentrepreneurs/SaaS-for-Enterprise-with-Django/HEAD/src/customers/admin.py -------------------------------------------------------------------------------- /src/customers/apps.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codingforentrepreneurs/SaaS-for-Enterprise-with-Django/HEAD/src/customers/apps.py -------------------------------------------------------------------------------- /src/customers/migrations/0001_initial.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codingforentrepreneurs/SaaS-for-Enterprise-with-Django/HEAD/src/customers/migrations/0001_initial.py -------------------------------------------------------------------------------- /src/customers/migrations/0002_customer_init_email_customer_init_email_confirmed.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codingforentrepreneurs/SaaS-for-Enterprise-with-Django/HEAD/src/customers/migrations/0002_customer_init_email_customer_init_email_confirmed.py -------------------------------------------------------------------------------- /src/customers/migrations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/customers/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codingforentrepreneurs/SaaS-for-Enterprise-with-Django/HEAD/src/customers/models.py -------------------------------------------------------------------------------- /src/customers/tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codingforentrepreneurs/SaaS-for-Enterprise-with-Django/HEAD/src/customers/tests.py -------------------------------------------------------------------------------- /src/customers/views.py: -------------------------------------------------------------------------------- 1 | from django.shortcuts import render 2 | 3 | # Create your views here. 4 | -------------------------------------------------------------------------------- /src/dashboard/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/dashboard/admin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codingforentrepreneurs/SaaS-for-Enterprise-with-Django/HEAD/src/dashboard/admin.py -------------------------------------------------------------------------------- /src/dashboard/apps.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codingforentrepreneurs/SaaS-for-Enterprise-with-Django/HEAD/src/dashboard/apps.py -------------------------------------------------------------------------------- /src/dashboard/migrations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/dashboard/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codingforentrepreneurs/SaaS-for-Enterprise-with-Django/HEAD/src/dashboard/models.py -------------------------------------------------------------------------------- /src/dashboard/tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codingforentrepreneurs/SaaS-for-Enterprise-with-Django/HEAD/src/dashboard/tests.py -------------------------------------------------------------------------------- /src/dashboard/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codingforentrepreneurs/SaaS-for-Enterprise-with-Django/HEAD/src/dashboard/views.py -------------------------------------------------------------------------------- /src/enterprises/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/enterprises/admin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codingforentrepreneurs/SaaS-for-Enterprise-with-Django/HEAD/src/enterprises/admin.py -------------------------------------------------------------------------------- /src/enterprises/apps.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codingforentrepreneurs/SaaS-for-Enterprise-with-Django/HEAD/src/enterprises/apps.py -------------------------------------------------------------------------------- /src/enterprises/migrations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/enterprises/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codingforentrepreneurs/SaaS-for-Enterprise-with-Django/HEAD/src/enterprises/models.py -------------------------------------------------------------------------------- /src/enterprises/tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codingforentrepreneurs/SaaS-for-Enterprise-with-Django/HEAD/src/enterprises/tests.py -------------------------------------------------------------------------------- /src/enterprises/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codingforentrepreneurs/SaaS-for-Enterprise-with-Django/HEAD/src/enterprises/urls.py -------------------------------------------------------------------------------- /src/enterprises/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codingforentrepreneurs/SaaS-for-Enterprise-with-Django/HEAD/src/enterprises/views.py -------------------------------------------------------------------------------- /src/helpers/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codingforentrepreneurs/SaaS-for-Enterprise-with-Django/HEAD/src/helpers/__init__.py -------------------------------------------------------------------------------- /src/helpers/billing.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codingforentrepreneurs/SaaS-for-Enterprise-with-Django/HEAD/src/helpers/billing.py -------------------------------------------------------------------------------- /src/helpers/date_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codingforentrepreneurs/SaaS-for-Enterprise-with-Django/HEAD/src/helpers/date_utils.py -------------------------------------------------------------------------------- /src/helpers/db/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codingforentrepreneurs/SaaS-for-Enterprise-with-Django/HEAD/src/helpers/db/__init__.py -------------------------------------------------------------------------------- /src/helpers/db/context/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codingforentrepreneurs/SaaS-for-Enterprise-with-Django/HEAD/src/helpers/db/context/__init__.py -------------------------------------------------------------------------------- /src/helpers/db/context/managers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codingforentrepreneurs/SaaS-for-Enterprise-with-Django/HEAD/src/helpers/db/context/managers.py -------------------------------------------------------------------------------- /src/helpers/db/engine/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/helpers/db/engine/base.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codingforentrepreneurs/SaaS-for-Enterprise-with-Django/HEAD/src/helpers/db/engine/base.py -------------------------------------------------------------------------------- /src/helpers/db/schemas.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codingforentrepreneurs/SaaS-for-Enterprise-with-Django/HEAD/src/helpers/db/schemas.py -------------------------------------------------------------------------------- /src/helpers/db/statements.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codingforentrepreneurs/SaaS-for-Enterprise-with-Django/HEAD/src/helpers/db/statements.py -------------------------------------------------------------------------------- /src/helpers/db/validators.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codingforentrepreneurs/SaaS-for-Enterprise-with-Django/HEAD/src/helpers/db/validators.py -------------------------------------------------------------------------------- /src/helpers/downloader.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codingforentrepreneurs/SaaS-for-Enterprise-with-Django/HEAD/src/helpers/downloader.py -------------------------------------------------------------------------------- /src/helpers/middleware/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/helpers/middleware/schemas.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codingforentrepreneurs/SaaS-for-Enterprise-with-Django/HEAD/src/helpers/middleware/schemas.py -------------------------------------------------------------------------------- /src/helpers/neonctl/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codingforentrepreneurs/SaaS-for-Enterprise-with-Django/HEAD/src/helpers/neonctl/__init__.py -------------------------------------------------------------------------------- /src/helpers/neonctl/clients.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codingforentrepreneurs/SaaS-for-Enterprise-with-Django/HEAD/src/helpers/neonctl/clients.py -------------------------------------------------------------------------------- /src/helpers/numbers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codingforentrepreneurs/SaaS-for-Enterprise-with-Django/HEAD/src/helpers/numbers.py -------------------------------------------------------------------------------- /src/helpers/security/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/helpers/security/blocked_lists.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codingforentrepreneurs/SaaS-for-Enterprise-with-Django/HEAD/src/helpers/security/blocked_lists.py -------------------------------------------------------------------------------- /src/landing/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/landing/admin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codingforentrepreneurs/SaaS-for-Enterprise-with-Django/HEAD/src/landing/admin.py -------------------------------------------------------------------------------- /src/landing/apps.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codingforentrepreneurs/SaaS-for-Enterprise-with-Django/HEAD/src/landing/apps.py -------------------------------------------------------------------------------- /src/landing/migrations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/landing/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codingforentrepreneurs/SaaS-for-Enterprise-with-Django/HEAD/src/landing/models.py -------------------------------------------------------------------------------- /src/landing/tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codingforentrepreneurs/SaaS-for-Enterprise-with-Django/HEAD/src/landing/tests.py -------------------------------------------------------------------------------- /src/landing/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codingforentrepreneurs/SaaS-for-Enterprise-with-Django/HEAD/src/landing/views.py -------------------------------------------------------------------------------- /src/manage.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codingforentrepreneurs/SaaS-for-Enterprise-with-Django/HEAD/src/manage.py -------------------------------------------------------------------------------- /src/profiles/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/profiles/admin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codingforentrepreneurs/SaaS-for-Enterprise-with-Django/HEAD/src/profiles/admin.py -------------------------------------------------------------------------------- /src/profiles/apps.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codingforentrepreneurs/SaaS-for-Enterprise-with-Django/HEAD/src/profiles/apps.py -------------------------------------------------------------------------------- /src/profiles/migrations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/profiles/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codingforentrepreneurs/SaaS-for-Enterprise-with-Django/HEAD/src/profiles/models.py -------------------------------------------------------------------------------- /src/profiles/tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codingforentrepreneurs/SaaS-for-Enterprise-with-Django/HEAD/src/profiles/tests.py -------------------------------------------------------------------------------- /src/profiles/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codingforentrepreneurs/SaaS-for-Enterprise-with-Django/HEAD/src/profiles/urls.py -------------------------------------------------------------------------------- /src/profiles/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codingforentrepreneurs/SaaS-for-Enterprise-with-Django/HEAD/src/profiles/views.py -------------------------------------------------------------------------------- /src/requirements/dev.in: -------------------------------------------------------------------------------- 1 | pip-tools 2 | rav -------------------------------------------------------------------------------- /src/requirements/prod.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codingforentrepreneurs/SaaS-for-Enterprise-with-Django/HEAD/src/requirements/prod.in -------------------------------------------------------------------------------- /src/staticfiles/base_tailwind/tailwind-input.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codingforentrepreneurs/SaaS-for-Enterprise-with-Django/HEAD/src/staticfiles/base_tailwind/tailwind-input.css -------------------------------------------------------------------------------- /src/staticfiles/images/flowbite-phone-mockup.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codingforentrepreneurs/SaaS-for-Enterprise-with-Django/HEAD/src/staticfiles/images/flowbite-phone-mockup.png -------------------------------------------------------------------------------- /src/staticfiles/theme/saas-theme.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codingforentrepreneurs/SaaS-for-Enterprise-with-Django/HEAD/src/staticfiles/theme/saas-theme.min.css -------------------------------------------------------------------------------- /src/staticfiles/vendors/flowbite.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codingforentrepreneurs/SaaS-for-Enterprise-with-Django/HEAD/src/staticfiles/vendors/flowbite.min.css -------------------------------------------------------------------------------- /src/staticfiles/vendors/flowbite.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codingforentrepreneurs/SaaS-for-Enterprise-with-Django/HEAD/src/staticfiles/vendors/flowbite.min.js -------------------------------------------------------------------------------- /src/staticfiles/vendors/flowbite.min.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codingforentrepreneurs/SaaS-for-Enterprise-with-Django/HEAD/src/staticfiles/vendors/flowbite.min.js.map -------------------------------------------------------------------------------- /src/staticfiles/vendors/saas-theme.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codingforentrepreneurs/SaaS-for-Enterprise-with-Django/HEAD/src/staticfiles/vendors/saas-theme.min.css -------------------------------------------------------------------------------- /src/subscriptions/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/subscriptions/admin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codingforentrepreneurs/SaaS-for-Enterprise-with-Django/HEAD/src/subscriptions/admin.py -------------------------------------------------------------------------------- /src/subscriptions/apps.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codingforentrepreneurs/SaaS-for-Enterprise-with-Django/HEAD/src/subscriptions/apps.py -------------------------------------------------------------------------------- /src/subscriptions/management/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/subscriptions/management/commands/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/subscriptions/management/commands/sync_permissions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codingforentrepreneurs/SaaS-for-Enterprise-with-Django/HEAD/src/subscriptions/management/commands/sync_permissions.py -------------------------------------------------------------------------------- /src/subscriptions/management/commands/sync_user_subs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codingforentrepreneurs/SaaS-for-Enterprise-with-Django/HEAD/src/subscriptions/management/commands/sync_user_subs.py -------------------------------------------------------------------------------- /src/subscriptions/migrations/0001_initial.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codingforentrepreneurs/SaaS-for-Enterprise-with-Django/HEAD/src/subscriptions/migrations/0001_initial.py -------------------------------------------------------------------------------- /src/subscriptions/migrations/0002_alter_subscription_options.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codingforentrepreneurs/SaaS-for-Enterprise-with-Django/HEAD/src/subscriptions/migrations/0002_alter_subscription_options.py -------------------------------------------------------------------------------- /src/subscriptions/migrations/0003_subscription_groups.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codingforentrepreneurs/SaaS-for-Enterprise-with-Django/HEAD/src/subscriptions/migrations/0003_subscription_groups.py -------------------------------------------------------------------------------- /src/subscriptions/migrations/0004_subscription_permissions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codingforentrepreneurs/SaaS-for-Enterprise-with-Django/HEAD/src/subscriptions/migrations/0004_subscription_permissions.py -------------------------------------------------------------------------------- /src/subscriptions/migrations/0005_alter_subscription_permissions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codingforentrepreneurs/SaaS-for-Enterprise-with-Django/HEAD/src/subscriptions/migrations/0005_alter_subscription_permissions.py -------------------------------------------------------------------------------- /src/subscriptions/migrations/0006_subscription_active.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codingforentrepreneurs/SaaS-for-Enterprise-with-Django/HEAD/src/subscriptions/migrations/0006_subscription_active.py -------------------------------------------------------------------------------- /src/subscriptions/migrations/0007_usersubscription.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codingforentrepreneurs/SaaS-for-Enterprise-with-Django/HEAD/src/subscriptions/migrations/0007_usersubscription.py -------------------------------------------------------------------------------- /src/subscriptions/migrations/0008_subscription_stripe_id.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codingforentrepreneurs/SaaS-for-Enterprise-with-Django/HEAD/src/subscriptions/migrations/0008_subscription_stripe_id.py -------------------------------------------------------------------------------- /src/subscriptions/migrations/0009_subscriptionprice.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codingforentrepreneurs/SaaS-for-Enterprise-with-Django/HEAD/src/subscriptions/migrations/0009_subscriptionprice.py -------------------------------------------------------------------------------- /src/subscriptions/migrations/0010_subscriptionprice_featured_subscriptionprice_order.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codingforentrepreneurs/SaaS-for-Enterprise-with-Django/HEAD/src/subscriptions/migrations/0010_subscriptionprice_featured_subscriptionprice_order.py -------------------------------------------------------------------------------- /src/subscriptions/migrations/0011_subscriptionprice_timestamp_and_more.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codingforentrepreneurs/SaaS-for-Enterprise-with-Django/HEAD/src/subscriptions/migrations/0011_subscriptionprice_timestamp_and_more.py -------------------------------------------------------------------------------- /src/subscriptions/migrations/0012_alter_subscriptionprice_options.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codingforentrepreneurs/SaaS-for-Enterprise-with-Django/HEAD/src/subscriptions/migrations/0012_alter_subscriptionprice_options.py -------------------------------------------------------------------------------- /src/subscriptions/migrations/0013_alter_subscription_options_subscription_featured_and_more.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codingforentrepreneurs/SaaS-for-Enterprise-with-Django/HEAD/src/subscriptions/migrations/0013_alter_subscription_options_subscription_featured_and_more.py -------------------------------------------------------------------------------- /src/subscriptions/migrations/0014_alter_subscriptionprice_options.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codingforentrepreneurs/SaaS-for-Enterprise-with-Django/HEAD/src/subscriptions/migrations/0014_alter_subscriptionprice_options.py -------------------------------------------------------------------------------- /src/subscriptions/migrations/0015_subscription_features.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codingforentrepreneurs/SaaS-for-Enterprise-with-Django/HEAD/src/subscriptions/migrations/0015_subscription_features.py -------------------------------------------------------------------------------- /src/subscriptions/migrations/0016_subscription_subtitle.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codingforentrepreneurs/SaaS-for-Enterprise-with-Django/HEAD/src/subscriptions/migrations/0016_subscription_subtitle.py -------------------------------------------------------------------------------- /src/subscriptions/migrations/0017_usersubscription_stripe_id.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codingforentrepreneurs/SaaS-for-Enterprise-with-Django/HEAD/src/subscriptions/migrations/0017_usersubscription_stripe_id.py -------------------------------------------------------------------------------- /src/subscriptions/migrations/0018_usersubscription_user_cancelled.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codingforentrepreneurs/SaaS-for-Enterprise-with-Django/HEAD/src/subscriptions/migrations/0018_usersubscription_user_cancelled.py -------------------------------------------------------------------------------- /src/subscriptions/migrations/0019_usersubscription_current_period_end_and_more.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codingforentrepreneurs/SaaS-for-Enterprise-with-Django/HEAD/src/subscriptions/migrations/0019_usersubscription_current_period_end_and_more.py -------------------------------------------------------------------------------- /src/subscriptions/migrations/0020_usersubscription_status.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codingforentrepreneurs/SaaS-for-Enterprise-with-Django/HEAD/src/subscriptions/migrations/0020_usersubscription_status.py -------------------------------------------------------------------------------- /src/subscriptions/migrations/0021_usersubscription_cancel_at_period_end.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codingforentrepreneurs/SaaS-for-Enterprise-with-Django/HEAD/src/subscriptions/migrations/0021_usersubscription_cancel_at_period_end.py -------------------------------------------------------------------------------- /src/subscriptions/migrations/0022_usersubscription_timestamp_usersubscription_updated.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codingforentrepreneurs/SaaS-for-Enterprise-with-Django/HEAD/src/subscriptions/migrations/0022_usersubscription_timestamp_usersubscription_updated.py -------------------------------------------------------------------------------- /src/subscriptions/migrations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/subscriptions/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codingforentrepreneurs/SaaS-for-Enterprise-with-Django/HEAD/src/subscriptions/models.py -------------------------------------------------------------------------------- /src/subscriptions/tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codingforentrepreneurs/SaaS-for-Enterprise-with-Django/HEAD/src/subscriptions/tests.py -------------------------------------------------------------------------------- /src/subscriptions/timing.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codingforentrepreneurs/SaaS-for-Enterprise-with-Django/HEAD/src/subscriptions/timing.md -------------------------------------------------------------------------------- /src/subscriptions/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codingforentrepreneurs/SaaS-for-Enterprise-with-Django/HEAD/src/subscriptions/utils.py -------------------------------------------------------------------------------- /src/subscriptions/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codingforentrepreneurs/SaaS-for-Enterprise-with-Django/HEAD/src/subscriptions/views.py -------------------------------------------------------------------------------- /src/templates/allauth/layouts/base.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codingforentrepreneurs/SaaS-for-Enterprise-with-Django/HEAD/src/templates/allauth/layouts/base.html -------------------------------------------------------------------------------- /src/templates/auth/login.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codingforentrepreneurs/SaaS-for-Enterprise-with-Django/HEAD/src/templates/auth/login.html -------------------------------------------------------------------------------- /src/templates/auth/register.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codingforentrepreneurs/SaaS-for-Enterprise-with-Django/HEAD/src/templates/auth/register.html -------------------------------------------------------------------------------- /src/templates/base.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codingforentrepreneurs/SaaS-for-Enterprise-with-Django/HEAD/src/templates/base.html -------------------------------------------------------------------------------- /src/templates/base/css.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codingforentrepreneurs/SaaS-for-Enterprise-with-Django/HEAD/src/templates/base/css.html -------------------------------------------------------------------------------- /src/templates/base/js.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codingforentrepreneurs/SaaS-for-Enterprise-with-Django/HEAD/src/templates/base/js.html -------------------------------------------------------------------------------- /src/templates/base/messages.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codingforentrepreneurs/SaaS-for-Enterprise-with-Django/HEAD/src/templates/base/messages.html -------------------------------------------------------------------------------- /src/templates/checkout/success.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codingforentrepreneurs/SaaS-for-Enterprise-with-Django/HEAD/src/templates/checkout/success.html -------------------------------------------------------------------------------- /src/templates/dashboard/base.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codingforentrepreneurs/SaaS-for-Enterprise-with-Django/HEAD/src/templates/dashboard/base.html -------------------------------------------------------------------------------- /src/templates/dashboard/main.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codingforentrepreneurs/SaaS-for-Enterprise-with-Django/HEAD/src/templates/dashboard/main.html -------------------------------------------------------------------------------- /src/templates/dashboard/nav.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codingforentrepreneurs/SaaS-for-Enterprise-with-Django/HEAD/src/templates/dashboard/nav.html -------------------------------------------------------------------------------- /src/templates/dashboard/sidebar.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codingforentrepreneurs/SaaS-for-Enterprise-with-Django/HEAD/src/templates/dashboard/sidebar.html -------------------------------------------------------------------------------- /src/templates/landing/features.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codingforentrepreneurs/SaaS-for-Enterprise-with-Django/HEAD/src/templates/landing/features.html -------------------------------------------------------------------------------- /src/templates/landing/hero.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codingforentrepreneurs/SaaS-for-Enterprise-with-Django/HEAD/src/templates/landing/hero.html -------------------------------------------------------------------------------- /src/templates/landing/main.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codingforentrepreneurs/SaaS-for-Enterprise-with-Django/HEAD/src/templates/landing/main.html -------------------------------------------------------------------------------- /src/templates/landing/proof.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codingforentrepreneurs/SaaS-for-Enterprise-with-Django/HEAD/src/templates/landing/proof.html -------------------------------------------------------------------------------- /src/templates/nav/navbar.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codingforentrepreneurs/SaaS-for-Enterprise-with-Django/HEAD/src/templates/nav/navbar.html -------------------------------------------------------------------------------- /src/templates/profiles/detail.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codingforentrepreneurs/SaaS-for-Enterprise-with-Django/HEAD/src/templates/profiles/detail.html -------------------------------------------------------------------------------- /src/templates/profiles/list.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codingforentrepreneurs/SaaS-for-Enterprise-with-Django/HEAD/src/templates/profiles/list.html -------------------------------------------------------------------------------- /src/templates/protected/entry.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codingforentrepreneurs/SaaS-for-Enterprise-with-Django/HEAD/src/templates/protected/entry.html -------------------------------------------------------------------------------- /src/templates/protected/user-only.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codingforentrepreneurs/SaaS-for-Enterprise-with-Django/HEAD/src/templates/protected/user-only.html -------------------------------------------------------------------------------- /src/templates/protected/view.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codingforentrepreneurs/SaaS-for-Enterprise-with-Django/HEAD/src/templates/protected/view.html -------------------------------------------------------------------------------- /src/templates/snippets/welcome-user-msg.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codingforentrepreneurs/SaaS-for-Enterprise-with-Django/HEAD/src/templates/snippets/welcome-user-msg.html -------------------------------------------------------------------------------- /src/templates/subscriptions/pricing.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codingforentrepreneurs/SaaS-for-Enterprise-with-Django/HEAD/src/templates/subscriptions/pricing.html -------------------------------------------------------------------------------- /src/templates/subscriptions/snippets/pricing-card.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codingforentrepreneurs/SaaS-for-Enterprise-with-Django/HEAD/src/templates/subscriptions/snippets/pricing-card.html -------------------------------------------------------------------------------- /src/templates/subscriptions/user_cancel_view.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codingforentrepreneurs/SaaS-for-Enterprise-with-Django/HEAD/src/templates/subscriptions/user_cancel_view.html -------------------------------------------------------------------------------- /src/templates/subscriptions/user_detail_view.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codingforentrepreneurs/SaaS-for-Enterprise-with-Django/HEAD/src/templates/subscriptions/user_detail_view.html -------------------------------------------------------------------------------- /src/templates/tenants/detail.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codingforentrepreneurs/SaaS-for-Enterprise-with-Django/HEAD/src/templates/tenants/detail.html -------------------------------------------------------------------------------- /src/templates/tenants/list.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codingforentrepreneurs/SaaS-for-Enterprise-with-Django/HEAD/src/templates/tenants/list.html -------------------------------------------------------------------------------- /src/templates/tenants/new-user.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codingforentrepreneurs/SaaS-for-Enterprise-with-Django/HEAD/src/templates/tenants/new-user.html -------------------------------------------------------------------------------- /src/tenants/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/tenants/admin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codingforentrepreneurs/SaaS-for-Enterprise-with-Django/HEAD/src/tenants/admin.py -------------------------------------------------------------------------------- /src/tenants/apps.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codingforentrepreneurs/SaaS-for-Enterprise-with-Django/HEAD/src/tenants/apps.py -------------------------------------------------------------------------------- /src/tenants/migrations/0001_initial.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codingforentrepreneurs/SaaS-for-Enterprise-with-Django/HEAD/src/tenants/migrations/0001_initial.py -------------------------------------------------------------------------------- /src/tenants/migrations/0002_alter_tenant_subdomain.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codingforentrepreneurs/SaaS-for-Enterprise-with-Django/HEAD/src/tenants/migrations/0002_alter_tenant_subdomain.py -------------------------------------------------------------------------------- /src/tenants/migrations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/tenants/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codingforentrepreneurs/SaaS-for-Enterprise-with-Django/HEAD/src/tenants/models.py -------------------------------------------------------------------------------- /src/tenants/tasks.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codingforentrepreneurs/SaaS-for-Enterprise-with-Django/HEAD/src/tenants/tasks.py -------------------------------------------------------------------------------- /src/tenants/tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codingforentrepreneurs/SaaS-for-Enterprise-with-Django/HEAD/src/tenants/tests.py -------------------------------------------------------------------------------- /src/tenants/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codingforentrepreneurs/SaaS-for-Enterprise-with-Django/HEAD/src/tenants/urls.py -------------------------------------------------------------------------------- /src/tenants/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codingforentrepreneurs/SaaS-for-Enterprise-with-Django/HEAD/src/tenants/utils.py -------------------------------------------------------------------------------- /src/tenants/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codingforentrepreneurs/SaaS-for-Enterprise-with-Django/HEAD/src/tenants/views.py -------------------------------------------------------------------------------- /src/visits/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/visits/admin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codingforentrepreneurs/SaaS-for-Enterprise-with-Django/HEAD/src/visits/admin.py -------------------------------------------------------------------------------- /src/visits/apps.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codingforentrepreneurs/SaaS-for-Enterprise-with-Django/HEAD/src/visits/apps.py -------------------------------------------------------------------------------- /src/visits/migrations/0001_initial.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codingforentrepreneurs/SaaS-for-Enterprise-with-Django/HEAD/src/visits/migrations/0001_initial.py -------------------------------------------------------------------------------- /src/visits/migrations/0002_pagevisit_user.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codingforentrepreneurs/SaaS-for-Enterprise-with-Django/HEAD/src/visits/migrations/0002_pagevisit_user.py -------------------------------------------------------------------------------- /src/visits/migrations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/visits/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codingforentrepreneurs/SaaS-for-Enterprise-with-Django/HEAD/src/visits/models.py -------------------------------------------------------------------------------- /src/visits/tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codingforentrepreneurs/SaaS-for-Enterprise-with-Django/HEAD/src/visits/tests.py -------------------------------------------------------------------------------- /src/visits/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codingforentrepreneurs/SaaS-for-Enterprise-with-Django/HEAD/src/visits/views.py -------------------------------------------------------------------------------- /tailwind.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codingforentrepreneurs/SaaS-for-Enterprise-with-Django/HEAD/tailwind.config.js --------------------------------------------------------------------------------