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

{% trans "New poll" %}

{% for field in form %} {% if field.is_hidden %} {{field}} {% else %} {% endif %} {% endfor %}
{{field.errors}}
{{field.label_tag}} {{field}} {{field.help_text|markdown}}
{% endblock %}