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>&nbsp;</th>
  13. <th>&nbsp;</th>
  14. <!--<th>&nbsp;</th>-->
  15. </tr>
  16. {% for list in lists %}
  17. <tr>
  18. <td>{{ list.real_name }}</td>
  19. <td>{{ list.fqdn_listname }}</td>
  20. <td>
  21. <a href="{% url list_info list.fqdn_listname %}">Info / Subscribe</a>
  22. </td>
  23. <td>
  24. <a href="{% url list_delete list.fqdn_listname %}">Delete list</a>
  25. </td>
  26. <!--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.
  27. <td>
  28. <a href="{% url list_settings list.fqdn_listname %}">View the list settings page</a>
  29. </td>-->
  30. </tr>
  31. {% endfor %}
  32. </table>
  33. {% endblock %}