view gpp/templates/polls/poll_vote.html @ 235:d302c498560e

Fix problem when deleting multiple topics from a forum in bulk. We getting a list of topics from the database, then deleting each topic. But after you delete a topic, the forum.last_post on the remaining non-deleted topics can be stale. This was causing a weird DoesNotExist. Now just get the topics one at a time from the database.
author Brian Neal <bgneal@gmail.com>
date Thu, 26 Aug 2010 04:01:58 +0000
parents 6a5549c2efb5
children daa2916f5b34
line wrap: on
line source
{% extends 'base.html' %}
{% block title %}Polls: {{ poll.question }}{% endblock %}
{% block custom_css %}
<link rel="stylesheet" type="text/css" href="{{ MEDIA_URL }}css/polls.css" />
{% endblock %}
{% block content %}
<h2>Poll</h2>
<h3>{{ poll.question }}</h3>
<form action="." method="post">{% csrf_token %}
   <div class="poll-form">
   {{ vote_form.as_p }}
   <input type="submit" value="Vote" />
   </div>
</form>
<p class="poll-nav">
<a href="{{ poll.get_absolute_url }}">Poll Details</a>
| <a href="{% url polls.views.poll_results poll.id %}">View Results</a>
| <a href="{% url polls.views.poll_index %}">Poll Index</a>
</p>
<p>This poll was published on {{ poll.start_date|date:"F d, Y" }}.</p>
{% endblock %}