mirror of https://github.com/zulip/zulip.git
sponsorship: Improve sponsorship page for sponsored realms.
This commit is contained in:
parent
ff19dda71c
commit
5422dd3661
|
@ -6,7 +6,7 @@ from django.shortcuts import render
|
||||||
from django.urls import reverse
|
from django.urls import reverse
|
||||||
|
|
||||||
from corporate.lib.stripe import RealmBillingSession, UpdatePlanRequest
|
from corporate.lib.stripe import RealmBillingSession, UpdatePlanRequest
|
||||||
from corporate.models import CustomerPlan, get_customer_by_realm
|
from corporate.models import CustomerPlan, get_current_plan_by_customer, get_customer_by_realm
|
||||||
from zerver.decorator import require_billing_access, zulip_login_required
|
from zerver.decorator import require_billing_access, zulip_login_required
|
||||||
from zerver.lib.request import REQ, has_request_variables
|
from zerver.lib.request import REQ, has_request_variables
|
||||||
from zerver.lib.response import json_success
|
from zerver.lib.response import json_success
|
||||||
|
@ -47,6 +47,12 @@ def sponsorship_request(request: HttpRequest) -> HttpResponse:
|
||||||
if user.realm.plan_type == user.realm.PLAN_TYPE_STANDARD_FREE:
|
if user.realm.plan_type == user.realm.PLAN_TYPE_STANDARD_FREE:
|
||||||
context["is_sponsored"] = True
|
context["is_sponsored"] = True
|
||||||
|
|
||||||
|
if customer is not None:
|
||||||
|
plan = get_current_plan_by_customer(customer)
|
||||||
|
if plan is not None:
|
||||||
|
context["plan_name"] = plan.name
|
||||||
|
context["free_trial"] = plan.is_free_trial()
|
||||||
|
|
||||||
add_sponsorship_info_to_context(context, user)
|
add_sponsorship_info_to_context(context, user)
|
||||||
return render(request, "corporate/sponsorship.html", context=context)
|
return render(request, "corporate/sponsorship.html", context=context)
|
||||||
|
|
||||||
|
|
|
@ -7,13 +7,33 @@
|
||||||
|
|
||||||
{% if is_sponsored %}
|
{% if is_sponsored %}
|
||||||
|
|
||||||
<div class="flex full-page thanks-page sponsorship-status-page">
|
<div class="register-account flex full-page sponsorship-status-page">
|
||||||
<div class="center-block new-style">
|
<div class="center-block new-style">
|
||||||
|
<div class="alert alert-success sponsorship-page-success" id="sponsorship-status-success-message-top">
|
||||||
|
Zulip is sponsoring a free <a href="https://github.com/plans/">Zulip Cloud Standard</a> plan for this organization. 🎉
|
||||||
|
</div>
|
||||||
<div class="pitch">
|
<div class="pitch">
|
||||||
<h1>Zulip Cloud billing for {{realm_name}}</h1>
|
<h1>Zulip Cloud billing for {{realm_name}}</h1>
|
||||||
</div>
|
</div>
|
||||||
<div class="white-box">
|
<div class="white-box">
|
||||||
<p> Zulip is sponsoring free <a href="/plans/">Zulip Cloud Standard</a> hosting for this organization. 🎉 </p>
|
<div id="sponsorship-status-page-details">
|
||||||
|
<div class="input-box sponsorship-form-field no-validation">
|
||||||
|
<label for="sponsored-org-current-plan" class="inline-block label-title">Your plan</label>
|
||||||
|
<div id="sponsored-org-current-plan" class="not-editable-realm-field">
|
||||||
|
{% if free_trial %}
|
||||||
|
{{ plan_name }} <i>(free trial)</i>
|
||||||
|
{% else %}
|
||||||
|
{{ plan_name }}
|
||||||
|
{% endif %}
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<hr />
|
||||||
|
<div class="support-link">
|
||||||
|
<p>
|
||||||
|
To make changes to your plan or view your billing history <a href="mailto:support@zulip.com">contact Zulip support</a>.
|
||||||
|
</p>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
|
|
|
@ -382,6 +382,11 @@ input[name="licenses"] {
|
||||||
margin: -50px;
|
margin: -50px;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
.sponsorship-status-page {
|
||||||
|
transform: scale(0.8);
|
||||||
|
margin: -10px -50px -50px;
|
||||||
|
}
|
||||||
|
|
||||||
#upgrade-page {
|
#upgrade-page {
|
||||||
transform: scale(0.8);
|
transform: scale(0.8);
|
||||||
margin: -50px 0;
|
margin: -50px 0;
|
||||||
|
@ -396,6 +401,11 @@ input[name="licenses"] {
|
||||||
margin: -150px -100px;
|
margin: -150px -100px;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
.sponsorship-status-page {
|
||||||
|
transform: scale(0.6);
|
||||||
|
margin: -50px -150px -100px;
|
||||||
|
}
|
||||||
|
|
||||||
#upgrade-page {
|
#upgrade-page {
|
||||||
transform: scale(0.6);
|
transform: scale(0.6);
|
||||||
margin: -150px 0;
|
margin: -150px 0;
|
||||||
|
@ -406,9 +416,14 @@ input[name="licenses"] {
|
||||||
width: 100%;
|
width: 100%;
|
||||||
}
|
}
|
||||||
|
|
||||||
.billing-status-page,
|
.billing-status-page {
|
||||||
|
font-weight: 400;
|
||||||
|
}
|
||||||
|
|
||||||
.sponsorship-status-page .white-box {
|
.sponsorship-status-page .white-box {
|
||||||
font-weight: 400;
|
font-weight: 400;
|
||||||
|
margin: 30px;
|
||||||
|
padding: 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
.billing-status-page p:last-child,
|
.billing-status-page p:last-child,
|
||||||
|
@ -524,11 +539,12 @@ input[name="licenses"] {
|
||||||
padding-top: 0;
|
padding-top: 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
#upgrade-page-details .input-box.billing-page-field:first-child,
|
#sponsorship-status-page-details .input-box.sponsorship-form-field:first-child,
|
||||||
#billing-page-details .input-box.billing-page-field:first-child {
|
#billing-page-details .input-box.billing-page-field:first-child {
|
||||||
margin-top: 10px;
|
margin-top: 10px;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
.sponsorship-status-page .support-link,
|
||||||
#billing-page .support-link {
|
#billing-page .support-link {
|
||||||
text-align: center;
|
text-align: center;
|
||||||
}
|
}
|
||||||
|
@ -560,9 +576,11 @@ input[name="licenses"] {
|
||||||
text-align: left;
|
text-align: left;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
#sponsorship-status-success-message-top,
|
||||||
#billing-success-message-top {
|
#billing-success-message-top {
|
||||||
display: block;
|
display: block;
|
||||||
text-align: center;
|
text-align: center;
|
||||||
|
font-weight: 400;
|
||||||
}
|
}
|
||||||
|
|
||||||
.upgrade-page-success {
|
.upgrade-page-success {
|
||||||
|
|
|
@ -482,6 +482,7 @@ html {
|
||||||
.alert-info,
|
.alert-info,
|
||||||
.billing-page-success,
|
.billing-page-success,
|
||||||
.upgrade-page-success,
|
.upgrade-page-success,
|
||||||
|
.sponsorship-page-success,
|
||||||
#autopay-error
|
#autopay-error
|
||||||
) {
|
) {
|
||||||
padding: 0;
|
padding: 0;
|
||||||
|
@ -925,6 +926,7 @@ button#register_auth_button_gitlab {
|
||||||
#upgrade-page-details,
|
#upgrade-page-details,
|
||||||
#billing-page-details,
|
#billing-page-details,
|
||||||
#sponsorship-form,
|
#sponsorship-form,
|
||||||
|
#sponsorship-status-page-details,
|
||||||
#registration,
|
#registration,
|
||||||
#new-realm-creation {
|
#new-realm-creation {
|
||||||
width: auto;
|
width: auto;
|
||||||
|
|
Loading…
Reference in New Issue