mirror of https://github.com/zulip/zulip.git
plans: Show special text for legacy orgs scheduled for upgrade.
This commit is contained in:
parent
8d9a7679bc
commit
34730203b3
|
@ -74,6 +74,8 @@ class PlansPageContext:
|
||||||
is_new_customer: bool = False
|
is_new_customer: bool = False
|
||||||
on_free_tier: bool = False
|
on_free_tier: bool = False
|
||||||
customer_plan: Optional[CustomerPlan] = None
|
customer_plan: Optional[CustomerPlan] = None
|
||||||
|
is_legacy_server_with_scheduled_upgrade: bool = False
|
||||||
|
legacy_server_new_plan: Optional[CustomerPlan] = None
|
||||||
|
|
||||||
billing_base_url: str = ""
|
billing_base_url: str = ""
|
||||||
|
|
||||||
|
@ -183,6 +185,16 @@ def remote_server_plans_page(
|
||||||
CustomerPlan.TIER_SELF_HOSTED_BASE,
|
CustomerPlan.TIER_SELF_HOSTED_BASE,
|
||||||
)
|
)
|
||||||
context.on_free_trial = is_customer_on_free_trial(context.customer_plan)
|
context.on_free_trial = is_customer_on_free_trial(context.customer_plan)
|
||||||
|
context.is_legacy_server_with_scheduled_upgrade = (
|
||||||
|
context.customer_plan.status == CustomerPlan.SWITCH_PLAN_TIER_AT_PLAN_END
|
||||||
|
)
|
||||||
|
if context.is_legacy_server_with_scheduled_upgrade:
|
||||||
|
assert context.customer_plan.end_date is not None
|
||||||
|
context.legacy_server_new_plan = CustomerPlan.objects.get(
|
||||||
|
customer=customer,
|
||||||
|
billing_cycle_anchor=context.customer_plan.end_date,
|
||||||
|
status=CustomerPlan.NEVER_STARTED,
|
||||||
|
)
|
||||||
|
|
||||||
context.is_new_customer = (
|
context.is_new_customer = (
|
||||||
not context.on_free_tier and context.customer_plan is None and not context.is_sponsored
|
not context.on_free_tier and context.customer_plan is None and not context.is_sponsored
|
||||||
|
|
|
@ -188,7 +188,11 @@
|
||||||
</div>
|
</div>
|
||||||
<div class="bottom">
|
<div class="bottom">
|
||||||
<div class="text-content">
|
<div class="text-content">
|
||||||
{% if is_self_hosted_realm and on_free_tier and not sponsorship_pending %}
|
{% if is_legacy_server_with_scheduled_upgrade and legacy_server_new_plan.tier == legacy_server_new_plan.TIER_SELF_HOSTED_BUSINESS %}
|
||||||
|
<a href="{{ billing_base_url }}/billing/" class="button current-plan-button">
|
||||||
|
Upgrade is scheduled
|
||||||
|
</a>
|
||||||
|
{% elif is_self_hosted_realm and on_free_tier and not sponsorship_pending %}
|
||||||
<a href="{{ billing_base_url }}/sponsorship/" class="button current-plan-button request-sponsorship">
|
<a href="{{ billing_base_url }}/sponsorship/" class="button current-plan-button request-sponsorship">
|
||||||
Request sponsorship
|
Request sponsorship
|
||||||
</a>
|
</a>
|
||||||
|
@ -247,7 +251,11 @@
|
||||||
</div>
|
</div>
|
||||||
<div class="bottom">
|
<div class="bottom">
|
||||||
<div class="text-content">
|
<div class="text-content">
|
||||||
{% if is_self_hosted_realm and customer_plan and customer_plan.tier == customer_plan.TIER_SELF_HOSTED_ENTERPRISE %}
|
{% if is_legacy_server_with_scheduled_upgrade and legacy_server_new_plan.tier == legacy_server_new_plan.TIER_SELF_HOSTED_ENTERPRISE %}
|
||||||
|
<a href="{{ billing_base_url }}/billing/" class="button current-plan-button">
|
||||||
|
Upgrade is scheduled
|
||||||
|
</a>
|
||||||
|
{% elif is_self_hosted_realm and customer_plan and customer_plan.tier == customer_plan.TIER_SELF_HOSTED_ENTERPRISE %}
|
||||||
<a href='{{ billing_base_url }}/billing' class="button current-plan-button" type="button">
|
<a href='{{ billing_base_url }}/billing' class="button current-plan-button" type="button">
|
||||||
<i class="icon current-plan-icon"></i>
|
<i class="icon current-plan-icon"></i>
|
||||||
Current plan
|
Current plan
|
||||||
|
|
Loading…
Reference in New Issue