Newer
Older
postorius / src / mailman_django / templates / mailman-django / menu / index.html
  1. {% load i18n %}
  2.  
  3. <!-- TODO use include "template" instead of with .. as .. end with-->
  4. <ul class="menu">
  5. <li id="admin">{% include "mailman-django/menu/administration.html" %}</li>
  6. <li id="maintanance">{% include "mailman-django/menu/maintanance.html" %}</li>
  7. <li id="general">{% include "mailman-django/menu/general.html" %}</li>
  8. <li id="info">{% include "mailman-django/menu/info.html" %}</li>
  9. <li id="subscriptions">{% include "mailman-django/menu/subscriptions.html" %}</li>
  10. <li id="user_options">{% include "mailman-django/menu/user_options.html" %}</li>
  11. {% comment %} {% if user in list.moderator %}{% endcomment %}
  12. ACL:TODO
  13.  
  14. <li{% if selected == "requests" %}id="selected"{% endif %}>
  15. <a href="{% comment %}{% url ... %}TODO add List{% endcomment %}">
  16. {% trans "Requests" %} Link:TODO
  17. </a>
  18. </li>
  19. {% comment %}{% endif %}{% endcomment %}
  20. </ul>
  21.