From dff5bcefcfe828bfca602819cf7d8153d5485020 Mon Sep 17 00:00:00 2001 From: Aevann1 Date: Tue, 13 Sep 2022 19:35:33 +0200 Subject: [PATCH] add loop.index to vote tables --- files/templates/poll_votes.html | 2 ++ files/templates/votes.html | 4 ++++ 2 files changed, 6 insertions(+) diff --git a/files/templates/poll_votes.html b/files/templates/poll_votes.html index fa1fdac84..0da37299d 100644 --- a/files/templates/poll_votes.html +++ b/files/templates/poll_votes.html @@ -18,6 +18,7 @@ + @@ -26,6 +27,7 @@ {% for vote in ups %} +
# User User Truescore Vote Time
{{loop.index}} {% with user=vote.user %} {% include "user_in_table.html" %} diff --git a/files/templates/votes.html b/files/templates/votes.html index 562a31847..37b337b07 100644 --- a/files/templates/votes.html +++ b/files/templates/votes.html @@ -30,6 +30,7 @@ + @@ -38,6 +39,7 @@ {% for vote in ups %} +
# User User Truescore Vote Time
{{loop.index}} {% with user=vote.user %} {% include "user_in_table.html" %} @@ -55,6 +57,7 @@ + @@ -63,6 +66,7 @@ {% for vote in downs %} +
# User User Truescore Vote Time
{{loop.index}} {% with user=vote.user %} {% include "user_in_table.html" %}