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

{% trans "Edit poll" %}

{% for field in form %} {% if field.is_hidden %} {{field}} {% else %} {% if field.help_text %}{%endif%} {% endif %} {% endfor %}
{% url poll poll.base_url%}

{% trans "Copy this address and send it to voters who want to participate to this poll" %}

{% url edit poll.admin_url %}

{% trans "Address to modify the current poll" %}

{% url edit_choices_admin poll.admin_url %}

{% trans "Address to modify choices of the current poll." %}

{{field.errors}}
{{field.label_tag}} {{field}}{{field.help_text|markdown}}
{% endblock %}