website/conservancy/supporters/urls.py
Ben Sturmfels 6a8515358b
Merge "supporter" and "supporters" apps
It's a little confusing having both a "supporter" and "supporters" app. This is
a fairly minor change to move the sustainer banner urls/views into the existing
"supporters" app. The functionality isn't directly related, but it is all about
sustainers.
2024-05-07 09:47:47 +10:00

10 lines
328 B
Python

from django.urls import path
from django.views.generic import TemplateView
from . import views as supp_views
urlpatterns = [
path('', supp_views.index),
path('banner/', TemplateView.as_view(template_name='supporter/banners.html')),
path('banners/', TemplateView.as_view(template_name='supporter/banners.html')),
]