mirror of https://github.com/zulip/zulip.git
billing: Add comment to downgrading section in views.billing_home.
This commit is contained in:
parent
d081cf7b78
commit
16a5540e58
|
@ -257,7 +257,9 @@ def billing_home(request: HttpRequest) -> HttpResponse:
|
||||||
if prorated_charges < 0:
|
if prorated_charges < 0:
|
||||||
prorated_credits = -prorated_charges # nocoverage -- no way to get here yet
|
prorated_credits = -prorated_charges # nocoverage -- no way to get here yet
|
||||||
prorated_charges = 0 # nocoverage
|
prorated_charges = 0 # nocoverage
|
||||||
else: # nocoverage -- no way to get here yet
|
# Can only get here by subscribing and then downgrading. We don't support downgrading
|
||||||
|
# yet, but keeping this code here since we will soon.
|
||||||
|
else: # nocoverage
|
||||||
plan_name = "Zulip Free"
|
plan_name = "Zulip Free"
|
||||||
seat_count = 0
|
seat_count = 0
|
||||||
renewal_date = ''
|
renewal_date = ''
|
||||||
|
|
Loading…
Reference in New Issue