diff --git a/files/templates/admins.html b/files/templates/admins.html index 00fe35b6f..895b216e2 100644 --- a/files/templates/admins.html +++ b/files/templates/admins.html @@ -4,28 +4,30 @@ {% block content %} - +

 
Admins

 
- - - - - - - - - -{% for user in admins %} - - - - - - -{% endfor %} -
#NameTruescoreMod actions
{{loop.index}}{{user.username}}{{user.truecoins}}{{user.modaction_num}}
+ + + + + + + + + + + {% for user in admins %} + + + + + + + {% endfor %} +
#NameTruescoreMod actions
{{loop.index}}{{user.username}}{{user.truecoins}}{{user.modaction_num}}
+
{% endblock %} diff --git a/files/templates/badges.html b/files/templates/badges.html index f0925a6d5..d61f65b66 100644 --- a/files/templates/badges.html +++ b/files/templates/badges.html @@ -1,6 +1,6 @@ {% extends "default.html" %} {% block content %} - +
 
 
@@ -12,28 +12,29 @@
 
 
- - - - - - - - - - - -{% for badge in badges %} - - - - - {%- set ct = counts[badge.id] if badge.id in counts else (0, 0) %} - - - -{% endfor %} -
#NameImageDescription#Rarity
{{loop.index}}{{badge.name}}{{badge.name}} - {{badge.description}}{{ ct[0] }}{{ "{:0.3f}".format(ct[1]) }}%
+ + + + + + + + + + + + {% for badge in badges %} + + + + + {%- set ct = counts[badge.id] if badge.id in counts else (0, 0) %} + + + + {% endfor %} +
#NameImageDescription#Rarity
{{loop.index}}{{badge.name}}{{badge.name}} + {{badge.description}}{{ ct[0] }}{{ "{:0.3f}".format(ct[1]) }}%
+
{% endblock %} \ No newline at end of file diff --git a/files/templates/sub/subs.html b/files/templates/sub/subs.html index 3134dc4c7..ae08eeb2a 100644 --- a/files/templates/sub/subs.html +++ b/files/templates/sub/subs.html @@ -1,6 +1,6 @@ {% extends "default.html" %} {% block content %} - +
 
@@ -9,25 +9,26 @@
 
List of {{HOLE_NAME}}s

 
- - - - - - - - - - -{% for sub, count in subs %} - - - - - - - -{% endfor %} -
#NamePostsFollowersBlockers
{{loop.index}}{{sub.name}}{{count}}{{sub.follow_num}}{{sub.block_num}}
+ + + + + + + + + + + {% for sub, count in subs %} + + + + + + + + {% endfor %} +
#NamePostsFollowersBlockers
{{loop.index}}{{sub.name}}{{count}}{{sub.follow_num}}{{sub.block_num}}
+
{% endblock %} \ No newline at end of file diff --git a/files/templates/votes.html b/files/templates/votes.html index 3cfc06b8a..28c572e3b 100644 --- a/files/templates/votes.html +++ b/files/templates/votes.html @@ -9,7 +9,7 @@ {% if thing %} - +
 	
@@ -23,37 +23,42 @@
 

Downvotes: {{downs | length}}

Upvotes

-
- - - - +
+
UserUser truescore
+ + + + + + - {% for vote in ups %} - - - - - {% endfor %} -
UserUser truescore
{{vote.user.username}}{{vote.user.truecoins}}
+ {% for vote in ups %} + + {{vote.user.username}} + {{vote.user.truecoins}} + + {% endfor %} + +

Downvotes

-
- - - - - - {% for vote in downs %} - - - - - {% endfor %} -
UserUser truescore
{{vote.user.username}}{{vote.user.truecoins}}
- - +
+ + + + + + + + {% for vote in downs %} + + + + + {% endfor %} +
UserUser truescore
{{vote.user.username}}{{vote.user.truecoins}}
+
{% endif %}