{% extends "postorius/base.html" %}
{% load i18n %}
{% load pagination %}
{% load nav_helpers %}
{% block head_title %}
{% trans 'List Index' %} - {{ block.super }}
{% endblock %}
{% block content %}
| {% trans 'List name' %} | {% trans 'Post address' %} | {% trans 'Description' %} | {% if user.is_superuser or role == 'moderator' or role == 'owner' %}{% trans 'Members' %} | {% trans 'Held messages' %} | {% trans 'Subscription requests' %} | {% endif %}
|---|---|---|---|---|---|
| {{ list.display_name }} {% if check_advertised %} {% if user.is_superuser and not list.advertised %} {% endif %} {% endif %} | {{ list.fqdn_listname }} | {{ list.description }} | {% if user.is_superuser or role == 'moderator' or role == 'owner' %}{{ list.member_count }} | {% if list|held_count > 0 %} {{ list|held_count }} {% else %} - {% endif %} | {% if list|pending_subscriptions_count > 0 or list|pending_unsubscriptions_count > 0 %} {% if list|pending_subscriptions_count > 0 %} {{ list|pending_subscriptions_count }} {% endif %} {% if list|pending_unsubscriptions_count > 0 %} {{ list|pending_unsubscriptions_count }} {% endif %} {% else %} - {% endif %} | {% endif %}
{% trans 'There are currently no mailing lists.' %}
{% endif %} {% endblock content %}