zulip/templates/zerver/no_spare_licenses.html

26 lines
962 B
HTML

{% extends "zerver/portico.html" %}
{% block title %}
<title>{{ _("No licenses available") }} | Zulip</title>
{% endblock %}
{% block portico_content %}
<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>
{% trans %}New members cannot currently join <a href="{{ realm_uri }}">{{ realm_name }}</a> because all Zulip Cloud licenses are in use.{% endtrans %}
</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>
{% endblock %}