blob: 7522a5a617c66a8650ced61b79ff6e63b851ce10 (
plain)
1
2
3
4
5
6
7
8
|
{% load i18n %}
<p>{% blocktrans with obj.user.name as voter_name %}{{ voter_name }} has added/modified a vote.{%endblocktrans%}</p>
<p>{% trans "Current results:" %}</p>
<ul>
{% for choice in obj.poll.getChoices %}
<li><strong>{{choice.name}}</strong>{% blocktrans count choice.getSum as sum %}: {{sum}} vote{%plural%}: {{sum}} votes{%endblocktrans%}</li>
{% endfor %}
</ul>
|