2021-05-28 15:57:08 +02:00
|
|
|
{% extends "zerver/portico.html" %}
|
2022-09-06 12:04:03 +02:00
|
|
|
|
|
|
|
{% block title %}
|
|
|
|
<title>{{ _("No licenses available") }} | Zulip</title>
|
|
|
|
{% endblock %}
|
|
|
|
|
2021-05-28 15:57:08 +02:00
|
|
|
{% block portico_content %}
|
2023-04-19 16:22:46 +02:00
|
|
|
<div class="app portico-page">
|
|
|
|
<div class="app-main portico-page-container center-block flex full-page account-creation new-style">
|
|
|
|
<div class="inline-block">
|
|
|
|
<div class="get-started">
|
|
|
|
<h1>{{ _("Organization cannot accept new members right now") }}</h1>
|
|
|
|
</div>
|
|
|
|
<div class="white-box">
|
|
|
|
<p>
|
2024-05-09 13:28:48 +02:00
|
|
|
{% trans %}New members cannot currently join <a href="{{ realm_url }}">{{ realm_name }}</a> because all Zulip Cloud licenses are in use.{% endtrans %}
|
2023-04-19 16:22:46 +02:00
|
|
|
</p>
|
|
|
|
<p>
|
|
|
|
{{ _("Please contact the person who invited you and ask them to increase the number of licenses, then try again.") }}
|
|
|
|
</p>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</div>
|
2021-05-28 15:57:08 +02:00
|
|
|
{% endblock %}
|