Ben Sturmfels
6a8515358b
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.
10 lines
328 B
Python
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')),
|
|
]
|