Mercurial > public > sg101
view gpp/templates/polls/poll_vote.html @ 463:452835f4429f
Fixing #225; for some reason MySQL finds the user 'John' when searching for 'John ' (note trailing space). This doesn't happen on SQLite. This causes a NoReverseMatch when searching for 'John ' in the member search. The solution is to call strip() on the form field contents in the clean_username() method of the search form.
author | Brian Neal <bgneal@gmail.com> |
---|---|
date | Sat, 09 Jul 2011 02:00:48 +0000 |
parents | 8f46ba2f1b81 |
children |
line wrap: on
line source
{% extends 'base.html' %} {% load url from future %} {% block title %}Polls: {{ poll.question }}{% endblock %} {% block custom_css %} <link rel="stylesheet" type="text/css" href="{{ STATIC_URL }}css/polls.css" /> {% endblock %} {% block content %} <h2>Poll</h2> <h3>Voting Booth: {{ poll.question }}</h3> {% if user_choice %} <p>You voted for "{{ user_choice.choice }}".</p> <form action="{% url 'polls-delete_vote' %}" method="post">{% csrf_token %} <div class="poll-form"> <input type="hidden" name="poll_id" value="{{ poll.id }}" /> <input type="submit" value="Delete My Vote!" /> </div> </form> {% else %} <form action="." method="post">{% csrf_token %} <div class="poll-form"> {{ vote_form.as_p }} <input type="submit" value="Vote" /> </div> </form> {% endif %} <p class="poll-nav"> <a href="{{ poll.get_absolute_url }}">View results</a> | <a href="{% url 'polls-main' %}">All polls</a> </p> <p>This poll was published on {{ poll.start_date|date:"F d, Y" }}.</p> {% endblock %}