{% extends "base.html" %} {% block title %}{{ _('Subscriber Overview') }}{% endblock %} {% block content %}
| {{ _('Email') }} | {{ _('Subscribed Lists') }} |
|---|---|
| {{ email }} {% if list %} ({{ _('List') }}{%- if list.deleted %} - {{ _('Deactivated') }}{% endif %}) {% endif %} | {% if lists %} {% for list in lists %} {{ list.display }} {% if list.deleted %} ({{ _('Deactivated') }}){% endif %} {% if not loop.last %}, {% endif %} {% endfor %} {% else %} {{ _('Not subscribed to any lists.') }} {% endif %} |
{{ _('There are no subscribers anywhere.') }}
{% endif %} {% endblock %}