{% extends "base.html" %} {% load static core_tags i18n poll_votings %} {% block content %}
{% if form.choice.errors %}

{{form.choice.errors|join:", " }}

{% endif %}

{{ question.title }}

{% csrf_token %} {% load_choices_for_poll_page question as choices %} {% for choice in choices %} {% if question.allow_multiple_choice%}
{% else %}
{% endif %} {% endfor %}

{% trans "Home" %}
{% endblock %}