{% extends "base.html" %} {% block title %}{{ _('Deactivated Mailing Lists') }}{% endblock %} {% block content %}

{{ _('Deactivated Mailing Lists') }}

{%- include "flash.html" %} {# Show flash messages #} {% if lists %} {% for list in lists %} {% endfor %}
{{ _('List Name') }} {{ _('List Address') }} {{ _('List Mode') }} {{ _('Actions') }}
{{ list.display }} {{ list.address }} {%- if list.mode == "broadcast" %} {{ _('Broadcast') }} {%- elif list.mode == "group" %} {{ _('Group') }} {%- else %} {{ _('Unknown') }} {%- endif %} {{ _('Subscribers') }} {{ _('Reactivate') }}
{% else %}

{{ _('No deactivated mailing lists found.') }}

{% endif %} {% endblock %}