{% load i18n static poll_votings %} {% block content %} {% if questions %} {% for question in questions %} {% if forloop.first%}

{% trans "What's your opinion?" %}

{% endif %}

{{ question.title }}

{% if question.freetextquestion %} {% include 'polls/includes/poll_free_text_form.html'%}
{% else %} {% include 'polls/includes/poll_question_form.html'%}
{% endif %}
{% endfor %} {% endif %} {% endblock %}