From e9b3af0e65f9d42ea0ea6c97c19c8bb1de1d981f Mon Sep 17 00:00:00 2001 From: Nick Sergeant Date: Thu, 10 Jan 2013 12:08:37 -0500 Subject: [PATCH] Monthly. --- snipts/templates/snipts/detail.html | 2 +- snipts/templates/snipts/list.html | 2 +- templates/pro.html | 2 +- views.py | 2 +- 4 files changed, 4 insertions(+), 4 deletions(-) diff --git a/snipts/templates/snipts/detail.html b/snipts/templates/snipts/detail.html index 72ebd94..036c05c 100644 --- a/snipts/templates/snipts/detail.html +++ b/snipts/templates/snipts/detail.html @@ -58,7 +58,7 @@ {% endif %}
{% if request.user.is_authenticated and not request.user.profile.is_pro %} -
Snipt Pro: Support the development of Snipt and get exclusive features for only $19/year.
+
Snipt Pro: Support the development of Snipt and get exclusive features for only $3/month.
{% endif %} {% with 'true' as detail %} {% include "snipts/snipt-list.html" %} diff --git a/snipts/templates/snipts/list.html b/snipts/templates/snipts/list.html index d766ca5..798aa62 100644 --- a/snipts/templates/snipts/list.html +++ b/snipts/templates/snipts/list.html @@ -14,7 +14,7 @@ {% block content %}
{% if request.user.is_authenticated and not request.user.profile.is_pro %} -
Snipt Pro: Support the development of Snipt and get exclusive features for only $19/year.
+
Snipt Pro: Support the development of Snipt and get exclusive features for only $3/month.
{% endif %} {% autopaginate snipts 10 %} {% for snipt in snipts %} diff --git a/templates/pro.html b/templates/pro.html index a0c4b3a..c66f927 100644 --- a/templates/pro.html +++ b/templates/pro.html @@ -22,7 +22,7 @@ {% if request.user.profile.is_pro %}

You're already a Pro. You know that ;)

{% else %} -

Pro accounts are just $19/year.

+

Pro accounts are just $3/month.

Sign Up Now

{% endif %} diff --git a/views.py b/views.py index b774206..0fc6966 100644 --- a/views.py +++ b/views.py @@ -63,7 +63,7 @@ def pro_signup_complete(request): token = request.POST['token'] stripe.api_key = STRIPE_API_KEY - plan = 'snipt-pro' + plan = 'snipt-pro-monthly' customer = stripe.Customer.create( card = token,