{% extends "base_polls.html" %} {% block content %}

Polls Question List

{% if latest_question_list %} {% if error_message %}

{{ error_message }}

{% endif %} {#
{% csrf_token %} #} {% csrf_token %} {% for question in latest_question_list %} {#
  • {{ question.question_text }}
  • #}

    {{ question.question_text }}

    {% for choice in question.choice_set.all %}
    {% endfor %} {% endfor %}
    {% else %}

    No polls are available.

    {% endif %} {% endblock content %}