| |
---|
| | <table class="table table-bordered table-striped"> |
---|
| | <thead> |
---|
| | <tr> |
---|
| | <th>{% trans 'List name' %}</th> |
---|
| | <th>{% trans 'List address' %}</th> |
---|
| | <th>{% trans 'Post address' %}</th> |
---|
| | <th>{% trans 'Description' %}</th> |
---|
| | </tr> |
---|
| | </thead> |
---|
| | <tbody> |
---|
| | {% for list in lists %} |
---|
| | <tr> |
---|
| | <td> |
---|
| | <a href="{% url 'list_summary' list_id=list.list_id %}">{{ list.display_name }}</a> |
---|
| | <a href="{% url 'list_summary' list_id=list.list_id %}">{{ list.display_name }}</a>{% if not list.settings.advertised %} (private*){% endif %} |
---|
| | </td> |
---|
| | <td>{{ list.fqdn_listname }}</td> |
---|
| | <td>{{ list.settings.description }}</td> |
---|
| | </tr> |
---|
| | {% endfor %} |
---|
| | </tbody> |
---|
| | </table> |
---|
| | |
---|
| | {% if user.is_superuser %} |
---|
| | <small>* Private lists can only be seen by admins.</small> |
---|
| | {% endif %} |
---|
| | |
---|
| | {% else %} |
---|
| | |
---|
| | <p>There are currently no mailing lists.</p> |
---|
| | |
---|
| | {% endif %} |
---|
| | |
---|
| | {% endblock main %} |
---|
| | |
---|
| | |