{% extends "base.html" %} {% block title %}{{ _('Subscriber Details') }} - {{ email }}{% endblock %} {% block content %}
{{ _('Email Address') }}: {{ email }}
{%- include "flash.html" %} {# Show flash messages #} {%- from "macros.html" import subscriber_list_buttons %} {{ subscriber_list_buttons(email) }}| {{ _('List Name') }} | {{ _('Subscriber Name') }} | {{ _('Comment') }} | {{ _('Actions') }} |
|---|---|---|---|
| {{ item.list.display }} {%- if item.list.deleted %} ({{ _('Deactivated') }}){% endif %} | {{ item.subscriber.name or "" }} | {{ item.subscriber.comment or "" }} | {{ _('Edit') }} {{ _('Remove from this List') }} |
{{ _('Not subscribed to any lists.') }}
{% endif %} {% endblock %}