{% extends "base" %} {% block title %}Display Question{% endblock %} {% block content %}

{{ poll.question }}

{{ poll.pub_date }}
Options
    {% for choice in poll.get_choice_list %}
  • {% endfor %}
{% endblock %}