From 5e86a2e7f9239a37cf2d0e8cc0db3af5b4f5e100 Mon Sep 17 00:00:00 2001 From: Nick Sergeant Date: Mon, 26 Oct 2015 11:30:11 -0400 Subject: [PATCH] Show billing for comp'd accounts. --- teams/views.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/teams/views.py b/teams/views.py index 1e5beb5..00d10c8 100644 --- a/teams/views.py +++ b/teams/views.py @@ -83,7 +83,8 @@ def team_billing(request, username): if team.stripe_id == 'COMP': return { 'name': 'Promotional trial', - 'team': team + 'team': team, + 'status': 'promo' } stripe.api_key = os.environ.get('STRIPE_SECRET_KEY',