Files @ 8716315b60c0
Branch filter:

Location: website/www/conservancy/apps/supporter/urls.py

Bradley M. Kuhn
Put Karen's doctorate as our featured item.

The video may not work there, but going to try it.
from django.conf.urls import url
from django.views.generic import TemplateView
from conservancy.apps.supporter import views as supp_views
from conservancy.static import views as static_views

INDEX_VIEW = supp_views.index
urlpatterns = [
    url(r'^$', INDEX_VIEW),
    url(r'^banners?/?$', TemplateView.as_view(template_name='supporter/banners.html')),
]
urlpatterns.extend(
    url(r'^{}(?:\.html|/|)$'.format(basename), INDEX_VIEW)
    for basename in ['index', '2015-supporter-appeal', '2016-supporter-appeal']
)
urlpatterns.append(url(r'', static_views.index))