2021-07-25 17:07:06 +02:00
|
|
|
{% extends "zerver/portico.html" %}
|
|
|
|
|
2022-09-06 12:04:03 +02:00
|
|
|
{% block title %}
|
|
|
|
<title>{{ _("Rate limit exceeded") }} | Zulip</title>
|
|
|
|
{% endblock %}
|
|
|
|
|
2021-07-25 17:07:06 +02:00
|
|
|
{% block portico_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/500art.svg" alt=""/>
|
2021-07-25 17:07:06 +02:00
|
|
|
<div class="errorbox">
|
|
|
|
<div class="errorcontent">
|
|
|
|
<h1 class="lead">{{ _("Rate limit exceeded.") }}</h1>
|
|
|
|
<p>
|
|
|
|
{% trans %}You have exceeded the limit for how
|
|
|
|
often a user can perform this action.{% endtrans %}
|
|
|
|
{% trans %}You can try again in {{retry_after}} seconds.{% endtrans %}
|
|
|
|
</p>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
|
|
|
|
{% endblock %}
|