{% extends "mailman-django/base.html" %}
{% load i18n %}
{% block content %}
<h1>{% trans "All mailing lists" %}</h1>
<table cellpadding="0" cellspacing="0">
<tr>
<th>{% trans "Real Name" %}</th>
<th>{% trans "List Name" %}</th>
<th colspan="3"> </th>
<!--<th> </th>-->
</tr>
{% for list in lists %}
<tr>
<td>{{ list.real_name }}</td>
<td>{{ list.fqdn_listname }}</td>
<td>
<a href="{% comment %} url list_subscriptions fqdn_listname=list.fqdn_listname option=None {% endcomment %}">{%trans "Info / Subscribe" %} #TODO - LINK</a>
</td>
<td>
<a href="{% url list_settings list.fqdn_listname %}">{%trans "Settings" %}</a>
</td>
<td>
<a href="{% url list_delete list.fqdn_listname %}">{%trans "Delete list" %}</a>
</td>
</tr>
{% endfor %}
</table>
{% endblock %}