{% extends "base.html" %} {% load markup %} {% load i18n %} {% block fullscript %} {{ form.media }} {% endblock %} {% block content %}

{% trans "Edit poll" %}

{% csrf_token %}
?
{% trans "Go to the poll!" %}
?
?
{% trans "Edit choices" %} {% for field in form %} {% if field.is_hidden %} {{field}} {% else %}
{{field.label_tag}} ?
{% if field.errors %} Error(s) :
    {% for error in field.errors %}
  1. {{ error|escape }}
  2. {% endfor %}
{% endif %}
{{field}} {% endif %} {% endfor %}
{% endblock %}