{% extends "base_resource.html" %} {% load i18n %} {% block entity_content %}

{% trans 'Mailing List Domains' %}

{% url 'mailing-list-list' member_pk as mailing_list_url %}

{% blocktrans %}Mailing list domains are domains that are dedicated exclusively to mailing lists. Typically, organizations will create a domain name such as lists.yourname.org for this purpose. All domains specified here will be available in the mailing lists section to be used when creating a new email list.{% endblocktrans %}

{% trans 'New Mailing List Domain' %} {% if entity_list %} {% for entity in entity_list %} {% endfor %}
{% trans 'Label' %}{% trans 'Domain' %}{% trans "Status" %}{% trans 'Actions' %}
{{ entity.label }} {{ entity.domain_zone }} {{ entity.get_display_status }} {% trans 'Edit' %} {% trans 'Delete' %} {% if entity.display_as_disabled %} {% trans 'Enable' %} {% else %} {% trans 'Disable' %} {% endif %}
{% endif %} {% endblock %}