view gpp/templates/polls/poll.html @ 11:cc8eb028def1

Update jquery-ui and theme version that is hosted on google. In preparation for having jquery on every page (?), make it so that the autocomplete plug is using the 'global' jquery, and not the one that came with it. It seems to work okay with jquery 1.3.2.
author Brian Neal <bgneal@gmail.com>
date Tue, 14 Apr 2009 02:35:35 +0000
parents dbd703f7d63a
children daa2916f5b34
line wrap: on
line source
{% extends 'base.html' %}
{% load comment_tags %}
{% block title %}Polls: {{ poll.question }}{% endblock %}
{% block content %}
<h2>Poll</h2>
<h3>{{ poll.question }}</h3>
<ul class="poll-detail">
{% for choice in poll.choice_set.all %}
   <li>{{ choice.choice }}</li>
{% endfor %}
</ul>
{% get_comment_count for poll as comment_count %}
<p>
This poll has <a href="{% url polls.views.poll_results poll.id %}">{{ comment_count }} comment{{ comment_count|pluralize }}</a>.
{% if poll.is_open %}
Voting for this poll started on {{ poll.start_date|date:"F d, Y" }}. 
   {% if poll.end_date %}
      Voting will end on {{ poll.end_date|date:"F d, Y" }}.
   {% endif %}
{% else %}
This poll ran from {{ poll.start_date|date:"F d, Y" }} to {{ poll.end_date|date:"F d, Y" }}.
{% endif %}
</p>
<p class="poll-nav">
<a href="{% url polls.views.poll_results poll.id %}">View Results &amp; Comments</a> 
{% if poll.is_open and user.is_authenticated %}
| <a href="{% url polls.views.poll_vote poll_id=poll.id %}">Vote</a>
{% endif %}
| <a href="{% url polls.views.poll_index %}">Poll Index</a>
</p>
{% endblock %}