Newer
Older
postorius / templates / mailman-django / lists / index.html
  1. {% extends "mailman-django/base.html" %}
  2. {% load i18n %}
  3.  
  4. {% block content %}
  5.  
  6. <h1>{% trans "All mailing lists" %}</h1>
  7.  
  8. <table cellpadding="0" cellspacing="0">
  9. <tr>
  10. <th>{% trans "Real Name" %}</th>
  11. <th>{% trans "List Name" %}</th>
  12. <th colspan="3">&nbsp;</th>
  13. <!--<th>&nbsp;</th>-->
  14. </tr>
  15. {% for list in lists %}
  16. <tr>
  17. <td>{{ list.real_name }}</td>
  18. <td>{{ list.fqdn_listname }}</td>
  19. <td>
  20. <a href="{% url list_info list.fqdn_listname %}">{%trans "Info / Subscribe" %}</a>
  21. </td>
  22. <td>
  23. <a href="{% url list_settings list.fqdn_listname %}">{%trans "Settings" %}</a>
  24. </td>
  25. <td>
  26. <a href="{% url list_delete list.fqdn_listname %}">{%trans "Delete list" %}</a>
  27. </td>
  28. <!--Not sure where to add the list settings link to let users know this page exists. Should be moved to better location but I didn't know where.
  29. <td>
  30. <a href="{% url list_settings list.fqdn_listname %}">View the list settings page</a>
  31. </td>-->
  32. </tr>
  33. {% endfor %}
  34. </table>
  35. {% endblock %}