website/www/conservancy/apps/supporter/urls.py
Ben Sturmfels b7e2ce2a4d
Switch to relative imports
The relative imports make it clearer what code is within the project and where
it's coming from.
2023-10-20 09:45:53 +11:00

16 lines
533 B
Python

from django.conf.urls import url
from django.views.generic import TemplateView
from . import views as supp_views
from ...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))