{% extends 'base.html' %} {% block content %}

Polls details page

{% if messages %}
{% for message in messages %}
{{ message }}
{% endfor %}
{% endif %}

{{ poll }}

{% csrf_token %} {% for choice in poll.choice_set.all %}
{% endfor %} Cancel
{% endblock content %}