{% 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 %}
{{root_url}}poll/{{poll.base_url}}

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

{{root_url}}edit/{{poll.admin_url}}

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

{{root_url}}editChoicesAdmin/{{poll.admin_url}}

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

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