Newer
Older
postorius / templates / mailman-django / public / list_summary.html
@benste benste on 21 Jul 2011 1 KB splittet new template into blocks
  1. {% extends "mailman-django/public/base.html" %}
  2. {% load i18n %}
  3.  
  4. {% block heading %}
  5. {{list.list_name}} <span>{{list.real_name}}</span>
  6. {% endblock %}
  7.  
  8. {% block header %}
  9. <div class="mm_boxHeader">About</div>
  10. {{list.description}}
  11. {% endblock %}
  12.  
  13. {% block actionButtonsList %}
  14. <li class="mm_subscribe"><a href="{% url list_subscriptions fqdn_listname=fqdn_listname option='subscribe' %}">{% trans "Subscribe" %}</a></li>
  15. <li class="mm_archives"><a href="#archives">{% trans "View Archives" %}</a></li>
  16. <li class="mm_options"><a href="{% url list_settings fqdn_listname=fqdn_listname %}">{% trans "Edit Options" %}</a></li>
  17. <li class="mm_unsubscribe mm_last"><a href="{% url list_subscriptions fqdn_listname=fqdn_listname option='unsubscribe' %}">{% trans "Unsubscribe" %}</a></li>
  18. {% endblock %}
  19.  
  20. {% block smallBoxLeft %}
  21. <div class="mm_boxHeader">{% trans "Contact" %}</div>
  22. <a href="#contactowner">{% trans "Contact Owner" %} #TODO</a>
  23. {% endblock %}
  24.  
  25. {% block smallBoxRight %}
  26. <div class="mm_boxHeader">{% trans "Other Lists" %}</div>
  27. <a href="{% url list_index %}">{% trans "View overview of all URL TODO mailing lists" %}</a>
  28. {% endblock %}
  29.  
  30. {% block footer %}
  31. <a class="mm_adminLink" href="{% url administration %}">{% trans "Admin Interface" %}</a>
  32. {% endblock %}