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 humanize %}
|
||||
{% load staticfiles %}
|
||||
|
||||
<div id="sidebar">
|
||||
@ -10,11 +11,12 @@
|
||||
<!-- poll results -->
|
||||
{% with motion.polls.all as polls %}
|
||||
{% if polls.exists and polls.0.has_votes %}
|
||||
<h4>{% trans "Poll result" %}:</h4>
|
||||
{% for poll in polls %}
|
||||
{% for poll in polls reversed %}
|
||||
{% if poll.has_votes %}
|
||||
{% 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 %}
|
||||
{% with poll.get_options.0 as option %}
|
||||
<div class="results">
|
||||
|
@ -92,7 +92,7 @@ li {
|
||||
.well h4 {
|
||||
margin: 20px 0 2px 0;
|
||||
}
|
||||
.well h4 .first {
|
||||
.well h4.first {
|
||||
margin-top: 0;
|
||||
}
|
||||
.well .results hr {
|
||||
|
Loading…
Reference in New Issue
Block a user