Files @ 541f423a3d1c
Branch filter:

Location: website/conservancy/supporters/urls.py - annotation

bsturmfels
Add transparent background to T-shirt image
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')),
    path('success/', views.success),
    path('webhook/', views.webhook),
    path('stripe/', views.sustainers_stripe),
    path('stripe2/', views.sustainers_stripe2, name='stripe2'),
]