From 10c3d624fe0eed19bf4ad7fafc06f2e87ec13394 Mon Sep 17 00:00:00 2001 From: Oskar Hahn Date: Fri, 9 Sep 2011 22:34:55 +0200 Subject: [PATCH] replace -2 with undocumented in beamer view of polls --- .../agenda/templates/beamer/ItemApplication.html | 6 +++--- .../agenda/templates/beamer/ItemAssignment.html | 12 ++++++------ 2 files changed, 9 insertions(+), 9 deletions(-) diff --git a/openslides/agenda/templates/beamer/ItemApplication.html b/openslides/agenda/templates/beamer/ItemApplication.html index 4b166f0bd..afc717a18 100644 --- a/openslides/agenda/templates/beamer/ItemApplication.html +++ b/openslides/agenda/templates/beamer/ItemApplication.html @@ -30,9 +30,9 @@ {{ option.yes }}
{{ option.no }}
{{ option.undesided }}
- {{ p.votesinvalid }}
+ {{ p.votesinvalidf }}
- {{ p.votescast }} + {{ p.votescastf }}
{% endfor %}
@@ -46,7 +46,7 @@ {% endwith %} - +

{% trans "Application No." %} {{ item.application.number }}

{{ item.title }}

diff --git a/openslides/agenda/templates/beamer/ItemAssignment.html b/openslides/agenda/templates/beamer/ItemAssignment.html index b55ef5475..48b6e9b73 100644 --- a/openslides/agenda/templates/beamer/ItemAssignment.html +++ b/openslides/agenda/templates/beamer/ItemAssignment.html @@ -21,7 +21,7 @@

{{ item.assignment.description|linebreaks }}

- + {% if item.assignment.status != "fin" %}

{% trans "Candidates" %}

    @@ -34,7 +34,7 @@ {% endfor %}
{% endif %} - + {% with polls|first as firstpoll %} {% if polls.count > 0 and firstpoll.published %} @@ -72,7 +72,7 @@ {% else %}∅{% endif %} {% endfor %} - + {% empty %} {% trans "No ballots available." %} @@ -82,7 +82,7 @@ {%trans 'Invalid votes' %} {% for p in polls %} {% if p.published %} - {{ p.votesinvalid }} + {{ p.votesinvalidf }} {% endif %} {% endfor %} @@ -90,13 +90,13 @@ {%trans 'Votes cast' %} {% for p in polls %} {% if p.published %} - {{ p.votescast }} + {{ p.votescastf }} {% endif %} {% endfor %} {% endif %} {% endwith %} - +
{% endblock %}