{% extends 'forums/base.html' %} {% load bootstrap %} {% load automarkup %} {% block breadcrumb_items %} {{ block.super }} Confirm Motion creation {% endblock %} {% block pagetitle %}: Motion: confirm creation{% endblock pagetitle %} {% block content %}

Preview

{{ form.initial.subject }}
{% if form.initial.text %} {{ form.initial.text|automarkup }} {% else %} No text given {% endif %}
{% if form.errors %} {% for field in form %} {% for error in field.errors %}
{{ field.name }} - {{ error|escape }}
{% endfor %} {% endfor %} {% for error in form.non_field_errors %}
{{ error|escape }}
{% endfor %} {% endif %}
{% csrf_token %} {{ form|bootstrap }}  Not satisfied? Hit your browser's back button and redraft your Motion
{% endblock content %}