billing: Convert plan name to new style.

This commit is contained in:
Aman Agrawal 2023-10-30 05:25:00 +00:00
parent 89003dcb25
commit c41a8317cf
2 changed files with 12 additions and 6 deletions

View File

@ -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">
<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 %}
<p>Your current plan is <strong>{{ plan_name }} Free Trial</strong>.</p>
{{ plan_name }} Free Trial
{% else %}
<p>Your current plan is <strong>{{ plan_name }}</strong>.</p>
{{ plan_name }}
{% endif %}
</div>
</div>
<p>
You are using <strong>{{ seat_count }} of {{ licenses }} licenses</strong>.
{% if automanage_licenses %}

View File

@ -916,6 +916,7 @@ button#register_auth_button_gitlab {
}
}
#billing-page,
#sponsorship-form,
#registration,
#new-realm-creation {