Newer
Older
postorius / templates / mailman-django / menu / maintanance.html
  1. {% load i18n %}
  2.  
  3. {% block menu_maintanance %}
  4. {% trans "Maintanance" %}
  5. <div><ul class="menu">
  6. <li {% if selected == "archive" %}id="selected"{% endif %}>
  7. <a href="{% url domains %}">
  8. {% trans "Archive" %} Link:TODO
  9. </a>
  10. </li>
  11. <li {% if selected == "auto_resonder" %}id="selected"{% endif %}>
  12. <a href="{% comment %}{% url ... %}{% endcomment %}">
  13. {% trans "Auto Responder" %} Link:TODO
  14. </a>
  15. <div><ul>
  16. <li {% if selected == "auto_respond_postings" %}id="selected"{% endif %}>
  17. <a href="{% comment %}{% url ... %}{% endcomment %}">
  18. {% trans "Postings" %} Link:TODO
  19. </a>
  20. </li>
  21. <li {% if selected == "auto_respond_requests" %}id="selected"{% endif %}>
  22. <a href="{% comment %}{% url ... %}{% endcomment %}">
  23. {% trans "Requests" %} Link:TODO
  24. </a>
  25. </li>
  26. <li {% if selected == "auto_respond_owner" %}id="selected"{% endif %}>
  27. <a href="{% comment %}{% url ... %}{% endcomment %}">
  28. {% trans "Owner" %} Link:TODO
  29. </a>
  30. </li>
  31. </ul></div>
  32. </li>
  33. </li>
  34. <li {% if selected == "filter" %}id="selected"{% endif %}>
  35. <a href="{% comment %}{% url ... %}TODO add List{% endcomment %}">
  36. {% trans "Filter" %} Link:TODO
  37. </a>
  38. <div><ul>
  39. <li {% if selected == "filter_content" %}id="selected"{% endif %}>
  40. <a href="{% comment %}{% url ... %}{% endcomment %}">
  41. {% trans "Filter content" %} Link:TODO
  42. </a>
  43. </li>
  44. <li {% if selected == "filter_sender" %}id="selected"{% endif %}>
  45. <a href="{% comment %}{% url ... %}{% endcomment %}">
  46. {% trans "Sender" %} Link:TODO
  47. </a>
  48. </li>
  49. <li {% if selected == "filter_message" %}id="selected"{% endif %}>
  50. <a href="{% comment %}{% url ... %}{% endcomment %}">
  51. {% trans "Message" %} Link:TODO
  52. </a>
  53. </li>
  54. <li {% if selected == "filter_receipent" %}id="selected"{% endif %}>
  55. <a href="{% comment %}{% url ... %}{% endcomment %}">
  56. {% trans "Receipent" %} Link:TODO
  57. </a>
  58. </li>
  59. <li {% if selected == "filter_spam" %}id="selected"{% endif %}>
  60. <a href="{% comment %}{% url ... %}{% endcomment %}">
  61. {% trans "Spam" %} Link:TODO
  62. </a>
  63. </li>
  64. <li {% if selected == "filter_topics" %}id="selected"{% endif %}>
  65. <a href="{% comment %}{% url ... %}{% endcomment %}">
  66. {% trans "Topics" %} Link:TODO
  67. </a>
  68. </li>
  69. </ul></div>
  70. </li>
  71. {% comment %} {% if user in list.admin %}{% endcomment %}
  72. ACL:TODO
  73. <li{% if selected == "requests" %}id="selected"{% endif %}>
  74. <a href="{% comment %}{% url ... %}TODO add List{% endcomment %}">
  75. {% trans "Requests" %} Link:TODO
  76. </a>
  77. </li>
  78. {% comment %}{% endif %}{% endcomment %}
  79. </ul></div>
  80. {% endblock%}