Files
zulip/templates/zerver/no_spare_licenses.html
Vector73 fef31614d3 zerver: Replace occurrences of uri with url in other templates.
This commit replaces occurrences of realm_uri with realm_url in
"context_processors.py" and related templates.

With by-hand translation updates for German (also updated in
Transifex) to avoid breaking the i18n system tests that use some
modified strings.

Co-authored-by: Junyao Chen <junyao.chen@socitydao.org>
2024-05-24 11:18:35 -07:00

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_url }}">{{ 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 %}