website/conservancy/supporters/urls.py
Ben Sturmfels dc133ff0cd
supporters: Make the new sustainers page live
I've temporarily hidden the quote for now.
2024-11-13 09:17:38 +11:00

14 lines
498 B
Python

from django.urls import path
from django.views.generic import TemplateView
from . import views
urlpatterns = [
path('', views.sustainers_stripe, name='sustainers'),
path('banner/', TemplateView.as_view(template_name='supporters/banners.html')),
path('banners/', TemplateView.as_view(template_name='supporters/banners.html')),
path('success/', views.success),
path('webhook/', views.webhook),
# TODO
path('paypal/', views.sustainers_paypal, name='sustainer_paypal'),
]