gremmie@1: {% extends 'base.html' %} bgneal@310: {% load url from future %} gremmie@1: {% block title %}Polls: {{ poll.question }}{% endblock %} gremmie@1: {% block custom_css %} bgneal@312: gremmie@1: {% endblock %} gremmie@1: {% block content %} gremmie@1:

Poll

bgneal@439:

Voting Booth: {{ poll.question }}

bgneal@439: {% if user_choice %} bgneal@439:

You voted for "{{ user_choice.choice }}".

bgneal@439:
{% csrf_token %} gremmie@1:
bgneal@439: bgneal@439: gremmie@1:
gremmie@1:
bgneal@439: {% else %} bgneal@439:
{% csrf_token %} bgneal@439:
bgneal@439: {{ vote_form.as_p }} bgneal@439: bgneal@439:
bgneal@439:
bgneal@439: {% endif %} gremmie@1:

bgneal@447: View results bgneal@447: | All polls gremmie@1:

gremmie@1:

This poll was published on {{ poll.start_date|date:"F d, Y" }}.

gremmie@1: {% endblock %}