mirror of https://github.com/zulip/zulip.git
billing: Convert plan name to new style.
This commit is contained in:
parent
89003dcb25
commit
c41a8317cf
|
@ -8,7 +8,7 @@
|
|||
{% block portico_content %}
|
||||
|
||||
<div class="app portico-page">
|
||||
<div class="billing-upgrade-page">
|
||||
<div id="billing-page" class="billing-upgrade-page">
|
||||
<div class="page-content">
|
||||
<div class="main">
|
||||
<div class="alert alert-danger" id="error-message-box"></div>
|
||||
|
@ -17,11 +17,16 @@
|
|||
<input type="hidden" name="csrfmiddlewaretoken" value="{{ csrf_token }}" />
|
||||
<div class="white-box">
|
||||
<div id="overview">
|
||||
{% if free_trial %}
|
||||
<p>Your current plan is <strong>{{ plan_name }} Free Trial</strong>.</p>
|
||||
{% else %}
|
||||
<p>Your current plan is <strong>{{ plan_name }}</strong>.</p>
|
||||
{% endif %}
|
||||
<div class="input-box no-validation">
|
||||
<label for="org_current_plan" class="inline-block label-title">Your plan</label>
|
||||
<div id="org_current_plan" class="not-editable-realm-field">
|
||||
{% if free_trial %}
|
||||
{{ plan_name }} Free Trial
|
||||
{% else %}
|
||||
{{ plan_name }}
|
||||
{% endif %}
|
||||
</div>
|
||||
</div>
|
||||
<p>
|
||||
You are using <strong>{{ seat_count }} of {{ licenses }} licenses</strong>.
|
||||
{% if automanage_licenses %}
|
||||
|
|
|
@ -916,6 +916,7 @@ button#register_auth_button_gitlab {
|
|||
}
|
||||
}
|
||||
|
||||
#billing-page,
|
||||
#sponsorship-form,
|
||||
#registration,
|
||||
#new-realm-creation {
|
||||
|
|
Loading…
Reference in New Issue