Newer
Older
postorius / src / mailman_django / templates / mailman-django / list_selector.html
{% load i18n %}

{% block selector %}
<div id="list_selector">
{%if lists|length >= 1 and lists|length <= 15 %}
    <form id=list_selector method="post" action="/lists/">
        <select name="list">
            {% for list in lists %}
                {% if list.settings.advertised %}
                    <option selected="" value="{{list.fqdn_listname}}">{{list.real_name}}</option>
                {% endif %}
            {% endfor %}
        </select>
    <input class="button" type="submit" value="Go to">
    </div></form>
    </form>
{% else %}
    <a href="{% url list_index %}">{% trans "List Index" %}</a>
{%endif%}
</div>
{% endblock %}