Fixed #1040: Show only last motion poll results on projector.
This commit is contained in:
parent
2034852fa8
commit
b8e30188ad
@ -1,4 +1,5 @@
|
|||||||
{% load i18n %}
|
{% load i18n %}
|
||||||
|
{% load humanize %}
|
||||||
{% load staticfiles %}
|
{% load staticfiles %}
|
||||||
|
|
||||||
<div id="sidebar">
|
<div id="sidebar">
|
||||||
@ -10,11 +11,12 @@
|
|||||||
<!-- poll results -->
|
<!-- poll results -->
|
||||||
{% with motion.polls.all as polls %}
|
{% with motion.polls.all as polls %}
|
||||||
{% if polls.exists and polls.0.has_votes %}
|
{% if polls.exists and polls.0.has_votes %}
|
||||||
<h4>{% trans "Poll result" %}:</h4>
|
{% for poll in polls reversed %}
|
||||||
{% for poll in polls %}
|
|
||||||
{% if poll.has_votes %}
|
{% if poll.has_votes %}
|
||||||
{% if polls|length > 1 %}
|
{% if polls|length > 1 %}
|
||||||
<p>{{ forloop.counter }}. {% trans "Vote" %}:</p>
|
<h4>{{ poll.poll_number|ordinal|safe }} {% trans "Vote" %}:</h4>
|
||||||
|
{% else %}
|
||||||
|
<h4>{% trans "Poll result" %}:</h4>
|
||||||
{% endif %}
|
{% endif %}
|
||||||
{% with poll.get_options.0 as option %}
|
{% with poll.get_options.0 as option %}
|
||||||
<div class="results">
|
<div class="results">
|
||||||
|
Loading…
Reference in New Issue
Block a user