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

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

{% endif %}

{{ question.title }}

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

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