Files @ 9b48cc94e651
Branch filter:

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

Bradley M. Kuhn
Continuing saga of the sizing chart problems for original shirts

Gildan removed the sizing chart entirely from their website again
after yet another redesign. Originally, we deep-linked into files in
their CDN for the charts, but it appears that in 5c72071 that I
introduced cut-and-paste error on the sizing charts. I cannot find
the original links, but finally I simply decided we'd mirror the
files in our CDN, which is where these now link to.

I suspect that I didn't do this to start for worrying about copyright
infringement, but upon second thought, I think it's very reasonably
fair use for us to distribute these images. We bought a lot of
t-shirts from Gildan and just trying to sell through.
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))