supporters: Make the new sustainers page live

I've temporarily hidden the quote for now.
This commit is contained in:
Ben Sturmfels 2024-11-13 09:17:38 +11:00
parent ed74990b7c
commit dc133ff0cd
Signed by: bsturmfels
GPG key ID: 023C05E2C9C068F0
2 changed files with 4 additions and 3 deletions

View file

@ -25,14 +25,16 @@
{% endblock %}
{% block content %}
<h1 class="lh-title tc mb0">Become a Sustainer Now</h1>
<h1 class="lh-title tc mt4 mb2">Become a Sustainer Now</h1>
<p class="measure-wide center tc">Sustainers help us do our work in a strategic, long-term way.</p>
{% comment %}
<div class="f5 measure-wide center tc mv4">
<p class="mt3 mb0"><em>“If software freedom is important to you, I can't think of a
more effective way to use your money than to support Conservancy.”</em></p>
<p class="tr"><strong>Made Up Person</strong></p>
</div>
{% endcomment %}
<div id="sustainer-grid-wrapper" class="mv4" style="grid-template-columns: 2fr 1fr; gap: 1.5rem">
<section class="mb4">

View file

@ -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'),
]