Newer
Older
postorius / src / mailmanweb / templates / mailmanweb / lists / new.html
@Florian Fuchs Florian Fuchs on 13 Mar 2012 381 bytes - show lists from all domains on list index
{% extends extend_template %}
{% load i18n %}

{% block main %}
    <h1>{% trans "Create a new List" %} {{ block.super }}</h1> 
        <form action="{% url list_new %}" method="post" class="well">
            {{ form.as_p }}
            <div class="field">
                <button type="submit">{% trans "Create List" %}</button>
            </div>
        </form>
{% endblock %}