Files @ 33833e3a3390
Branch filter:

Location: website/conservancy/supporter/urls.py

bsturmfels
Convert remaining `url` routes to `path`/`re_path`
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),
]