{% extends 'pollngo/base.html' %} {% block title %} {{block.super}} - {{question.title}} {% endblock %} {% block content %}

{{question.title}}

{{question.text}}

Asked on {{question.created_on|date}}
{% if last_choice %}

Your last choice was {{last_choice.text}}.
Would you like to modify it?

{% endif %}

    {% for choice in choices %}
  • {{choice.text}}

  • {% endfor %}

See results.

{% endblock %}