2020-03-25 02:00:28 +01:00
|
|
|
{% extends "zerver/portico.html" %}
|
|
|
|
|
|
|
|
{% block content %}
|
|
|
|
|
|
|
|
<div class="error_page">
|
|
|
|
<div class="container">
|
|
|
|
<div class="row-fluid">
|
2022-07-16 20:24:50 +02:00
|
|
|
<img src="/static/images/errors/400art.svg" alt=""/>
|
2020-03-25 02:00:28 +01:00
|
|
|
<div class="errorbox config-error">
|
|
|
|
<div class="errorcontent">
|
|
|
|
<h1 class="lead">{{ _('Update required') }}</h1>
|
|
|
|
<p>
|
|
|
|
{% trans %}
|
|
|
|
You are using old version of the Zulip desktop
|
|
|
|
app that is no longer supported.
|
|
|
|
{% endtrans %}
|
|
|
|
</p>
|
|
|
|
|
|
|
|
{% if auto_update_broken %}
|
|
|
|
<p>
|
|
|
|
{% trans %}
|
|
|
|
The auto-update feature in this old version of
|
|
|
|
Zulip desktop app no longer works.
|
|
|
|
{% endtrans %}
|
|
|
|
</p>
|
|
|
|
{% endif %}
|
|
|
|
|
|
|
|
<p>
|
2020-05-26 05:15:21 +02:00
|
|
|
<a href="https://zulip.com/apps" target="_blank" rel="noopener noreferrer">
|
2020-03-25 02:00:28 +01:00
|
|
|
{{ _("Download the latest release.") }}
|
|
|
|
</a>
|
|
|
|
</p>
|
|
|
|
</div>
|
|
|
|
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
|
|
|
|
{% endblock %}
|