mirror of https://github.com/zulip/zulip.git
billing: Add location for errors on billing page.
This adds a location for error messages to the billing page, using the standard error styling.
This commit is contained in:
parent
e0bd719f5c
commit
570b9515c6
|
@ -19,6 +19,12 @@
|
|||
<div class="page-content">
|
||||
<div class="main">
|
||||
|
||||
{% if error_message %}
|
||||
<div class="alert alert-danger" id="error-message-box">
|
||||
{{ error_message }}
|
||||
</div>
|
||||
{% endif %}
|
||||
|
||||
<h1>{{ _("Billing") }}</h1>
|
||||
{% if admin_access %}
|
||||
<ul class="nav nav-tabs" id="billing-tabs">
|
||||
|
|
|
@ -55,6 +55,7 @@ def check_html_templates(templates, all_dups):
|
|||
IGNORE_IDS = [
|
||||
'api-example-tabs',
|
||||
'errors',
|
||||
'error-message-box',
|
||||
'email',
|
||||
'messages',
|
||||
'registration',
|
||||
|
|
Loading…
Reference in New Issue