Newer
Older
postorius / templates / mailman-django / public / list_summary.html
@benste benste on 21 Jul 2011 1 KB splittet new template into blocks
{% extends "mailman-django/public/base.html" %}
{% load i18n %}

{% block heading %}
    {{list.list_name}} <span>{{list.real_name}}</span>
{% endblock %}

{% block header %}
    <div class="mm_boxHeader">About</div>
    {{list.description}}
{% endblock %}

{% block actionButtonsList %}
    <li class="mm_subscribe"><a href="{% url list_subscriptions fqdn_listname=fqdn_listname option='subscribe' %}">{% trans "Subscribe" %}</a></li>
    <li class="mm_archives"><a href="#archives">{% trans "View Archives" %}</a></li>
    <li class="mm_options"><a href="{% url list_settings fqdn_listname=fqdn_listname %}">{% trans "Edit Options" %}</a></li>
    <li class="mm_unsubscribe mm_last"><a href="{% url list_subscriptions fqdn_listname=fqdn_listname option='unsubscribe' %}">{% trans "Unsubscribe" %}</a></li>
{% endblock %}

{% block smallBoxLeft %}
    <div class="mm_boxHeader">{% trans "Contact" %}</div>
    <a href="#contactowner">{% trans "Contact Owner" %} #TODO</a>
{% endblock %}

{% block smallBoxRight %}
    <div class="mm_boxHeader">{% trans "Other Lists" %}</div>
    <a href="{% url list_index %}">{% trans "View overview of all URL TODO mailing lists" %}</a>
{% endblock %}

{% block footer %}
    <a class="mm_adminLink" href="{% url administration %}">{% trans "Admin Interface" %}</a>
{% endblock %}