diff --git a/hc/payments/models.py b/hc/payments/models.py index caf008bb..a73ffdaa 100644 --- a/hc/payments/models.py +++ b/hc/payments/models.py @@ -29,8 +29,8 @@ class Subscription(models.Model): def price(self): if self.plan_id == "P5": return 5 - elif self.plan_id == "P75": - return 75 + elif self.plan_id == "P50": + return 50 return 0 diff --git a/hc/payments/views.py b/hc/payments/views.py index c63d260b..e9f03663 100644 --- a/hc/payments/views.py +++ b/hc/payments/views.py @@ -55,7 +55,7 @@ def log_and_bail(request, result): @require_POST def create_plan(request): plan_id = request.POST["plan_id"] - if plan_id not in ("P5", "P75"): + if plan_id not in ("P5", "P50"): return HttpResponseBadRequest() sub = Subscription.objects.for_user(request.user) @@ -113,7 +113,7 @@ def create_plan(request): profile.sms_sent = 0 profile.team_access_allowed = True profile.save() - elif plan_id == "P75": + elif plan_id == "P50": profile.ping_log_limit = 1000 profile.check_limit = 500 profile.sms_limit = 500 diff --git a/static/img/integrations/sms.png b/static/img/integrations/sms.png index 8100074a..4a20fffc 100644 Binary files a/static/img/integrations/sms.png and b/static/img/integrations/sms.png differ diff --git a/templates/front/channels.html b/templates/front/channels.html index 94db72ef..59d61293 100644 --- a/templates/front/channels.html +++ b/templates/front/channels.html @@ -151,7 +151,7 @@ class="icon" alt="Email icon" />
Get an email message when check goes up or down.
+Get an email message when a check goes up or down.
Add Integration @@ -161,7 +161,7 @@ class="icon" alt="SMS icon" />Get a text message to your phone when check goes down.
+Get a text message to your phone when a check goes down.
Add Integration diff --git a/templates/payments/pricing.html b/templates/payments/pricing.html index 1b750696..d31e9ffd 100644 --- a/templates/payments/pricing.html +++ b/templates/payments/pricing.html @@ -67,10 +67,11 @@free
$75/mo
+$50/mo