{% extends 'settings/layout.html' %} {% load i18n %} {% load humanize %} {% block title %}{% trans "Email Blocklist" %}{% endblock %} {% block header %}{% trans "Email Blocklist" %}{% endblock %} {% block edit-button %} {% trans "Add domain" as button_text %} {% include 'snippets/toggle/open_button.html' with controls_text="add_domain" icon_with_text="plus" text=button_text focus="add_domain_header" %} {% endblock %} {% block panel %} {% include 'settings/email_blocklist/domain_form.html' with controls_text="add_domain" class="block" %}

{% trans "When someone tries to register with an email from this domain, no account will be created. The registration process will appear to have worked." %}

{% url 'settings-federation' as url %} {% for domain in domains %} {% endfor %} {% if not domains.exists %} {% endif %}
{% trans "Domain" %} {% trans "Users" %} {% trans "Options" %}
{{ domain.domain }} {% with user_count=domain.users.count %} {% blocktrans trimmed count conter=user_count with display_count=user_count|intcomma %} {{ display_count }} user {% plural %} {{ display_count }} users {% endblocktrans %} {% endwith %}
{% csrf_token %} {% trans "Delete" as button_text %}
{% trans "No email domains currently blocked" %}
{% endblock %}