2024-06-05 06:51:07 +02:00
|
|
|
{% extends "zerver/portico_error_pages/portico_error_page.html" %}
|
2012-10-04 21:14:38 +02:00
|
|
|
|
2022-09-06 12:04:03 +02:00
|
|
|
{% block title %}
|
|
|
|
<title>{{ _("Internal server error") }} | Zulip</title>
|
|
|
|
{% endblock %}
|
|
|
|
|
2013-03-11 20:48:13 +01:00
|
|
|
{% block customhead %}
|
2016-04-21 08:48:33 +02:00
|
|
|
{{ super() }}
|
2021-04-21 00:46:14 +02:00
|
|
|
<meta http-equiv="refresh" content="60;URL='/'" />
|
2013-03-06 18:20:57 +01:00
|
|
|
{% endblock %}
|
|
|
|
|
2024-05-31 07:21:14 +02:00
|
|
|
{% block error_page_content %}
|
|
|
|
<img src="{{ static('images/errors/500art.svg') }}" alt=""/>
|
|
|
|
<div class="errorbox">
|
|
|
|
<div class="errorcontent">
|
|
|
|
<h1 class="lead">{{ _("Internal server error") }}</h1>
|
|
|
|
<p>
|
|
|
|
{% trans %}
|
|
|
|
Your Zulip chat cannot be loaded because the server is experiencing technical difficulties.
|
|
|
|
{% endtrans %}
|
|
|
|
</p>
|
|
|
|
<p>
|
|
|
|
{% trans %}
|
|
|
|
This page will reload automatically when service is restored.
|
|
|
|
{% endtrans %}
|
|
|
|
{% if corporate_enabled %}
|
|
|
|
{% trans %}
|
|
|
|
In the meantime, you can <a href="mailto:{{support_email}}">contact Zulip support</a>.
|
|
|
|
{% endtrans %}
|
|
|
|
{% else %}
|
|
|
|
{% trans %}
|
|
|
|
In the meantime, you can <a href="mailto:{{support_email}}">contact
|
|
|
|
this server's administrators</a> for support.
|
|
|
|
{% endtrans %}
|
|
|
|
{% endif %}
|
|
|
|
</p>
|
|
|
|
{% if not corporate_enabled %}
|
|
|
|
<p>
|
|
|
|
{% trans troubleshooting_url="https://zulip.readthedocs.io/en/latest/production/troubleshooting.html" %}
|
|
|
|
If you administer this server, you may want to check out the
|
|
|
|
<a href="{{troubleshooting_url}}">Zulip server troubleshooting guide</a>.
|
|
|
|
{% endtrans %}
|
|
|
|
</p>
|
|
|
|
{% endif %}
|
2017-07-12 11:59:42 +02:00
|
|
|
</div>
|
|
|
|
</div>
|
2012-10-04 21:14:38 +02:00
|
|
|
{% endblock %}
|