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

{% trans 'Mailing Lists' %}

{% trans "Mailing lists allow you to easily communicate with a group of email addresses by sending a message to a single address. A mailing list can allow all participants to share messages or they can be configured to send messages from just one or a few people to everyone." %}

{% trans 'New Mailing List' %} {% if entity_list %} {% for entity in entity_list %} {% endfor %}
{% trans 'Name' %}{% trans 'Domain' %}{% trans 'Status' %}{% trans 'Actions' %}
{{ entity.listname }} {{ entity.mailing_list_domain }} {{ entity.get_display_status }} {% trans 'Edit' %} {% trans 'Delete' %} {% if entity.display_as_disabled %} {% trans 'Enable' %} {% else %} {% trans 'Disable' %} {% endif %}
{% if is_paginated %} {% endif %} {% endif %} {% endblock %}