Files @ 29e46a237f43
Branch filter:

Location: website/conservancy/supporters/urls.py

bsturmfels
Disable Tachyons import line

This avoids an error during `collectstatic`.
from django.urls import path
from django.views.generic import TemplateView

from . import views

urlpatterns = [
    path('', views.sustainers),
    path('banner/', TemplateView.as_view(template_name='supporters/banners.html')),
    path('banners/', TemplateView.as_view(template_name='supporters/banners.html')),
]