Fixed #1040: Show only last motion poll results on projector.

This commit is contained in:
Emanuel Schuetze 2013-11-11 17:45:05 +01:00
parent 2034852fa8
commit b8e30188ad
2 changed files with 7 additions and 5 deletions

View File

@ -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">
@ -27,7 +29,7 @@
</div>
{% endwith %}
{% else %}
{% if poll|length == 1 %}
{% if poll|length == 1 %}
<i>{% trans "No poll results available." %}</i>
{% endif %}
{% endif %}

View File

@ -92,7 +92,7 @@ li {
.well h4 {
margin: 20px 0 2px 0;
}
.well h4 .first {
.well h4.first {
margin-top: 0;
}
.well .results hr {