diff options
| author | Jan Tuomi <jans.tuomi@gmail.com> | 2024-02-29 22:08:55 +0200 |
|---|---|---|
| committer | Jan Tuomi <jan@jantuomi.fi> | 2024-12-21 19:43:13 +0200 |
| commit | 0800a94b65b53dbceab79ed628ddfec45b05ebf6 (patch) | |
| tree | 239bbe736a67642145417d77c611820cf7f18c3d /templates/poll_vote_list.html.j2 | |
| parent | 3620ac2671651eb096e49845e2ef500918e90d2a (diff) | |
Do not break votes count in list view
Diffstat (limited to 'templates/poll_vote_list.html.j2')
| -rw-r--r-- | templates/poll_vote_list.html.j2 | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/templates/poll_vote_list.html.j2 b/templates/poll_vote_list.html.j2 index a9b2a48..f782a90 100644 --- a/templates/poll_vote_list.html.j2 +++ b/templates/poll_vote_list.html.j2 @@ -7,7 +7,7 @@ {% include "poll_choice_datetime_range.html.j2" %} </strong> <span> - <i>{{ choice.votes | length }} votes</i> + <i>{{ choice.votes | length }} votes</i> </span> <div> {% if choice.votes_with_value(1) | length != 0 %} |
