{% extends "django_pgpmailman/base.html" %} {% load i18n %} {% load pagination %} {% block head_title %} {% trans 'PGP List Index' %} - {{ block.super }} {% endblock %} {% block content %} {% if user.is_superuser %} Create new list {% endif %} {% if lists|length > 0 %}
{% for pgp_list in lists %} {% with mlist=pgp_list.mlist %} {% if user.is_superuser or mlist.settings.advertised %} {% endif %} {% endwith %} {% endfor %}
{% trans 'List name' %} {% trans 'Post address' %} {% trans 'Key fingerprint' %} {% trans 'Description' %}
{{ mlist.display_name }} {% if user.is_superuser and not mlist.settings.advertised %} ({% trans 'unadvertised' %} *){% endif %} {{ mlist.fqdn_listname }} {{ pgp_list.pubkey.fingerprint }} {{ mlist.settings.description }}
{% if user.is_superuser %} * {% trans 'Only admins see unadvertised lists in the list index.' %} {% endif %} {% paginator lists %} {% else %}

{% trans 'There are currently no PGP enabled mailing lists.' %}

{% endif %} {% endblock content %}