Compare commits

..

No commits in common. "dc133ff0cddf9d36725d01b94cb7f4673c4dbb3e" and "d4a1cfcff4ad71e67fafd0563ea516a7e17e6b24" have entirely different histories.

3 changed files with 5 additions and 5 deletions

View file

@ -43,4 +43,5 @@ STRIPE_ENDPOINT_SECRET = get_secret(secrets, 'STRIPE_ENDPOINT_SECRET')
CAPTCHA_FLITE_PATH = '/usr/bin/flite'
CAPTCHA_SOX_PATH = '/usr/bin/sox'
CAPTCHA_NOISE_FUNCTIONS = ('captcha.helpers.noise_dots',)
CAPTCHA_LETTER_ROTATION = (-25, 25)
CAPTCHA_NOISE_FUNCITONS = ('captcha.helpers.noise_dots',)

View file

@ -25,16 +25,14 @@
{% endblock %}
{% block content %}
<h1 class="lh-title tc mt4 mb2">Become a Sustainer Now</h1>
<h1 class="lh-title tc mb0">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,11 +4,12 @@ from django.views.generic import TemplateView
from . import views
urlpatterns = [
path('', views.sustainers_stripe, name='sustainers'),
path('', views.sustainers, 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'),
]