From 1eadd260fd209ab3ca1bb3ade6acdbacc926249d Mon Sep 17 00:00:00 2001 From: Nick Sergeant Date: Tue, 10 May 2016 16:19:43 -0400 Subject: [PATCH] Eh, make it $5. --- accounts/templates/activate.html | 2 +- accounts/views.py | 2 +- templates/registration/registration_form.html | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/accounts/templates/activate.html b/accounts/templates/activate.html index 9a5766c..1c77955 100644 --- a/accounts/templates/activate.html +++ b/accounts/templates/activate.html @@ -30,7 +30,7 @@
- Activate for a one-time fee of $9.
+ Activate for a one-time fee of $5.
(fully refundable within 3 days of signup)
diff --git a/accounts/views.py b/accounts/views.py index fdaf1a3..1aa13cd 100644 --- a/accounts/views.py +++ b/accounts/views.py @@ -32,7 +32,7 @@ def activate(request): try: customer = stripe.Customer.create(card=token, email=request.user.email) - stripe.Charge.create(amount=900, + stripe.Charge.create(amount=500, currency='usd', customer=customer.id, description='Snipt.net') diff --git a/templates/registration/registration_form.html b/templates/registration/registration_form.html index 0dc5a34..3820458 100644 --- a/templates/registration/registration_form.html +++ b/templates/registration/registration_form.html @@ -22,7 +22,7 @@ {% endif %}
- Create an account for a one-time fee of $9.
+ Create an account for a one-time fee of $5.
(fully refundable within 3 days of signup)