<ul>
{% for choice in question.choice_set.all %}
<li>{{ choice.choice_text }} -- {{ choice.votes }} vote{{
choice.votes|pluralize }}</li>
{% endfor %}
</ul>
<a href="{% url 'polls:detail' question.id %}">Vote again?</a>
}}}
--
Ticket URL: <https://code.djangoproject.com/ticket/31586>
Django <https://code.djangoproject.com/>
The Web framework for perfectionists with deadlines.
* status: new => closed
* resolution: => invalid
Comment:
It's correct as is. The link goes to the page where the user can vote, not
to the view that processes the results of voting.
--
Ticket URL: <https://code.djangoproject.com/ticket/31586#comment:1>