From 8c1ae2520e89cca2b54b7338d63248df80b64539 Mon Sep 17 00:00:00 2001 From: Aevann Date: Thu, 11 May 2023 17:05:56 +0300 Subject: [PATCH] fix if condition --- files/templates/userpage/banner.html | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/files/templates/userpage/banner.html b/files/templates/userpage/banner.html index 6135697c0..dd6f190bb 100644 --- a/files/templates/userpage/banner.html +++ b/files/templates/userpage/banner.html @@ -224,7 +224,7 @@

Coins spent on awards: {{u.coins_spent}}

Coins spent on hats: {{u.coins_spent_on_hats}}

- {% if v and v.admin_level > PERMS['VIEW_PATRONS'] %} + {% if v and v.admin_level >= PERMS['VIEW_PATRONS'] %}

Lifetime Donated: ${{u.lifetime_donated}}

{% endif %} @@ -500,7 +500,7 @@

Coins spent on awards: {{u.coins_spent}}

Coins spent on hats: {{u.coins_spent_on_hats}}

- {% if v and v.admin_level > PERMS['VIEW_PATRONS'] %} + {% if v and v.admin_level >= PERMS['VIEW_PATRONS'] %}

Lifetime Donated: ${{u.lifetime_donated}}

{% endif %}