{% extends "polls/base.html" %} {% block title %}Detail of Question{% endblock %} {% block content %}

{{ q.question_text }}

{{ error_message }}

{% csrf_token %} {% for c in q.choice_set.all %}
{% endfor %}
{% endblock %}