diff --git a/openslides/assignment/templates/assignment/poll_view.html b/openslides/assignment/templates/assignment/poll_view.html
index eceb3278d..a55f5265e 100644
--- a/openslides/assignment/templates/assignment/poll_view.html
+++ b/openslides/assignment/templates/assignment/poll_view.html
@@ -35,11 +35,23 @@
{% endfor %}
{% trans "Invalid votes" %} |
- {{ pollform.votesinvalid.errors }}{{ pollform.votesinvalid }} |
+ {% for value in poll.get_vote_values %}
+ {% if forloop.first %}
+ {{ pollform.votesinvalid.errors }}{{ pollform.votesinvalid }} |
+ {% else %}
+ |
+ {% endif %}
+ {% endfor %}
{% trans "Votes cast" %} |
- {{ pollform.votescast.errors }}{{ pollform.votescast }} |
+ {% for value in poll.get_vote_values %}
+ {% if forloop.first %}
+ {{ pollform.votescast.errors }}{{ pollform.votescast }} |
+ {% else %}
+ |
+ {% endif %}
+ {% endfor %}