Newer
Older
postorius / src / postorius / templates / postorius / user_subscriptions.html
  1. {% extends postorius_base_template %}
  2.  
  3. {% load url from future %}
  4. {% load i18n %}
  5.  
  6. {% block subtitle %}
  7. {% trans "Subscriptions | " as page_title %}{{ page_title|add:user.username }}
  8. {% endblock %}
  9.  
  10. {% block main %}
  11. {% include 'postorius/menu/user_nav.html' %}
  12. <h1>{% trans "List Subscriptions" %} <span></span></h1>
  13.  
  14. <p>{% trans "You are subscribed to the following mailing lists:" %}</p>
  15.  
  16. <table class="table table-bordered table-striped">
  17. <thead>
  18. <tr>
  19. <th>{% trans 'List Name' %}</th>
  20. <th>{% trans 'Subscription Address' %}</th>
  21. <th>{% trans 'Role' %}</th>
  22. <th>{% trans 'Delivery Mode' %}</th>
  23. </tr>
  24. </thead>
  25. <tbody>
  26. {% for subscription in memberships %}
  27. <tr>
  28. <td>{{ subscription.mlist }}</td>
  29. <td>{{ subscription.address }}</td>
  30. <td>{{ subscription.role }}</td>
  31. <td>{{ subscription.preferences.delivery_mode }}</td>
  32. </tr>
  33. {% endfor %}
  34. </tbody>
  35. </table>
  36. {% endblock main %}