From dc133ff0cddf9d36725d01b94cb7f4673c4dbb3e Mon Sep 17 00:00:00 2001 From: Ben Sturmfels Date: Wed, 13 Nov 2024 09:17:38 +1100 Subject: [PATCH] supporters: Make the new sustainers page live I've temporarily hidden the quote for now. --- .../supporters/templates/supporters/sustainers_stripe.html | 4 +++- conservancy/supporters/urls.py | 3 +-- 2 files changed, 4 insertions(+), 3 deletions(-) diff --git a/conservancy/supporters/templates/supporters/sustainers_stripe.html b/conservancy/supporters/templates/supporters/sustainers_stripe.html index 7cce2593..35372e80 100644 --- a/conservancy/supporters/templates/supporters/sustainers_stripe.html +++ b/conservancy/supporters/templates/supporters/sustainers_stripe.html @@ -25,14 +25,16 @@ {% endblock %} {% block content %} -

Become a Sustainer Now

+

Become a Sustainer Now

Sustainers help us do our work in a strategic, long-term way.

+ {% comment %}

“If software freedom is important to you, I can't think of a more effective way to use your money than to support Conservancy.”

Made Up Person

+ {% endcomment %}
diff --git a/conservancy/supporters/urls.py b/conservancy/supporters/urls.py index 32cbe66b..706e47b6 100644 --- a/conservancy/supporters/urls.py +++ b/conservancy/supporters/urls.py @@ -4,12 +4,11 @@ from django.views.generic import TemplateView from . import views urlpatterns = [ - path('', views.sustainers, name='sustainers'), + path('', views.sustainers_stripe, name='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), # TODO - path('stripe/', views.sustainers_stripe), path('paypal/', views.sustainers_paypal, name='sustainer_paypal'), ]