{% extends 'base.html' %} {% load staticfiles %} {% load i18n %} {% block stylesheets %} {{ block.super }} {% endblock stylesheets %} {% block content %}
{% for field in form %} {% if field.errors %} {% endif %} {% endfor %}
{{ form_header }}
    {% for err in field.errors %}
  • {{ err }}
  • {% endfor %}
{{ field.label_tag }} {{ field }}
Cancel
{% trans 'Preview' %}
{% trans 'refresh'|capfirst %}

{% trans 'Hit preview first. Only the items displayed in the list box will get created. Refer to the manual for details.' %}

{% csrf_token %}
{% endblock content %} {% block scripts %} {{ block.super }} {% endblock %}