inital check in

This commit is contained in:
2025-03-07 12:15:48 -06:00
parent 1a571d2f8b
commit cdbbea7711
56 changed files with 1988 additions and 0 deletions

17
schasite/urls.py Normal file
View File

@@ -0,0 +1,17 @@
from django.urls import path
from . import views
urlpatterns = [
path("", views.index, name="index"),
path("useful_links", views.useful_links, name="useful_links"),
path("about_us", views.about_us, name="about_us"),
path("calendar", views.calendar, name="calendar"),
path("newsletters", views.newsletters, name="newsletters"),
path("dues", views.dues, name="dues"),
path("membership_form", views.membership_form, name="membership_form"),
path("scha_board", views.scha_board, name="scha_board"),
# stripe specific urls below
path('config/', views.stripe_config),
path('create-checkout-session/', views.create_checkout_session),
]