From 8f18bd05c456e5c2970ed9d5251b3c4d7d752886 Mon Sep 17 00:00:00 2001 From: Nick Sergeant Date: Fri, 2 May 2014 15:54:05 -0500 Subject: [PATCH] Switch to new monthly plan rate. --- templates/pro-signup.html | 2 +- templates/pro.html | 2 +- views.py | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/templates/pro-signup.html b/templates/pro-signup.html index 1782ef0..79ff19d 100644 --- a/templates/pro-signup.html +++ b/templates/pro-signup.html @@ -35,7 +35,7 @@
Please wait…
- $3 USD will be charged to your card monthly. Also, you rock. Tell yourself that every month, too. + $5 USD will be charged to your card monthly. Also, you rock. Tell yourself that every month, too.
diff --git a/templates/pro.html b/templates/pro.html index 7557b80..a0e85c1 100644 --- a/templates/pro.html +++ b/templates/pro.html @@ -22,7 +22,7 @@ {% if request.user.profile.is_pro %}

You're already a Pro.

{% else %} -

Pro is only $3/month.

+

Pro is only $5/month.

Buy Now

{% endif %}
diff --git a/views.py b/views.py index 3b034dc..10ad9f9 100644 --- a/views.py +++ b/views.py @@ -104,7 +104,7 @@ def pro_signup_complete(request): token = request.POST['token'] stripe.api_key = STRIPE_SECRET_KEY - plan = 'snipt-pro-monthly' + plan = 'snipt-monthly' try: customer = stripe.Customer.create(card=token,