Files @ 6c91a14f6b11
Branch filter:

Location: website/conservancy/supporter/urls.py

bsturmfels
Remove unused CCS upload template
from django.urls import path, re_path
from django.views.generic import TemplateView

from . import views as supp_views
from .. import views as static_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')),
    re_path(r'', static_views.index),
]