{% extends "base.html" %} {% block title %}{{ _('Subscribers') }} - {{ mailing_list.name }}{% endblock %} {% block content %}
{{ _('All direct subscribers of this list. May include other mailing lists whose subscribers you will find in a second table below.') }}
{% if mailing_list.subscribers %}| {{ _('Name') }} | {{ _('Email') }} | {{ _('Comment') }} | {{ _('Actions') }} |
|---|---|---|---|
| {{ subscriber.name if subscriber.name }} | {{ subscriber.email }} {% if list %} ({{ _('List') }}{%- if list.deleted %} - {{ _('Deactivated') }}{% endif %}) {% endif %} | {{ subscriber.comment if subscriber.comment }} | {{ _('Edit') }} {{ _('Delete') }} |
{{ _('No subscribers yet.') }}
{% endif %}{{ _('All indirect subscribers of this list via other mailing lists subscribed to this list. May contain duplicates if the same people are on multiple lists that are subscribed here.') }}
{% if subscribers_indirect %}| {{ _('Name') }} | {{ _('Email') }} | {{ _('Via List') }} |
|---|---|---|
| {{ subscriber.name if subscriber.name }} | {{ subscriber.email }} | {{ list.name }} |
{{ _('No indirect subscribers.') }}
{% endif %} {% endblock %}