feat: initial commit - Band Management application

This commit is contained in:
2026-01-06 03:11:46 +01:00
commit 34e12e00b3
24543 changed files with 3991790 additions and 0 deletions

View File

@@ -0,0 +1,36 @@
from django.urls import path
from .views import FrontPagesView
urlpatterns = [
path(
"front/landing/",
FrontPagesView.as_view(template_name="landing_page.html"),
name="landing-page",
),
path(
"front/pricing/",
FrontPagesView.as_view(template_name="pricing_page.html"),
name="pricing-page",
),
path(
"front/payment/",
FrontPagesView.as_view(template_name="payment_page.html"),
name="payment-page",
),
path(
"front/checkout/",
FrontPagesView.as_view(template_name="checkout_page.html"),
name="checkout-page",
),
path(
"front/help_center/",
FrontPagesView.as_view(template_name="help_center_landing.html"),
name="help-center-landing",
),
path(
"front/help_center/article/",
FrontPagesView.as_view(template_name="help_center_article.html"),
name="help-center-article",
),
]