{% extends "app/layout.html" %} {% block content %}

{{ poll.text }}


{% for choice in poll.choice_set.all %}
{{choice.text}}
{{choice.votes}}
{% endfor %}
Vote again? {% endblock %}