2013-07-29 23:03:31 +02:00
|
|
|
{% extends "zerver/portico.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 %}
|
|
|
|
|
2017-08-08 19:32:16 +02:00
|
|
|
{% block portico_class_name %}error{% endblock %}
|
2012-10-04 21:14:38 +02:00
|
|
|
|
2017-08-08 19:32:16 +02:00
|
|
|
{% block portico_content %}
|
|
|
|
<div class="error_page">
|
2017-07-12 11:59:42 +02:00
|
|
|
<div class="container">
|
|
|
|
<div class="row-fluid">
|
2023-01-25 00:08:42 +01:00
|
|
|
<img src="{{ static('images/errors/500art.svg') }}" alt=""/>
|
2017-07-12 11:59:42 +02:00
|
|
|
<div class="errorbox">
|
|
|
|
<div class="errorcontent">
|
2022-09-06 12:04:03 +02:00
|
|
|
<h1 class="lead">{{ _("Internal server error") }}</h1>
|
2022-10-02 04:47:41 +02:00
|
|
|
<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>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</div>
|
2012-10-22 21:06:05 +02:00
|
|
|
|
2012-10-04 21:14:38 +02:00
|
|
|
{% endblock %}
|