2023-10-06 17:50:05 +02:00
|
|
|
{% extends "zerver/portico.html" %}
|
|
|
|
|
|
|
|
{% block title %}
|
|
|
|
<title>{{ _("Configuration error") }} | Zulip</title>
|
|
|
|
{% endblock %}
|
|
|
|
|
|
|
|
{% block portico_content %}
|
2024-03-02 23:56:28 +01:00
|
|
|
<div id="config_error_page" class="flex full-page">
|
|
|
|
<div class="new-style">
|
|
|
|
<div class="pitch">
|
|
|
|
<h1>
|
|
|
|
{{ _("Configuration error") }}
|
|
|
|
</h1>
|
|
|
|
</div>
|
|
|
|
<div class="white-box">
|
|
|
|
<div class="errorbox config-error">
|
|
|
|
<div class="errorcontent">
|
|
|
|
<p>
|
2023-10-06 17:50:05 +02:00
|
|
|
{% block error_content %}
|
|
|
|
{% endblock %}
|
2024-03-02 23:56:28 +01:00
|
|
|
</p>
|
2023-10-06 17:50:05 +02:00
|
|
|
|
2024-03-02 23:56:28 +01:00
|
|
|
<p>After making your changes, remember to restart
|
|
|
|
the Zulip server.</p>
|
|
|
|
<p><a href=""> Refresh</a> to try again or <a href="/login/">click here</a> to go back to the login page.</p>
|
2023-10-06 17:50:05 +02:00
|
|
|
</div>
|
2024-03-02 23:56:28 +01:00
|
|
|
|
2023-10-06 17:50:05 +02:00
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</div>
|
2024-03-02 23:56:28 +01:00
|
|
|
</div>
|
2023-10-06 17:50:05 +02:00
|
|
|
{% endblock %}
|