Newer
Older
postorius / src / postorius / templates / postorius / lists / new.html
@Florian Fuchs Florian Fuchs on 23 Mar 2012 334 bytes * added copy of the GPL
{% 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 }}
        <button class="btn btn-primary" type="submit">{% trans "Create List" %}</button>
    </form>
{% endblock %}