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