diff --git a/files/templates/userpage/banner.html b/files/templates/userpage/banner.html index 2795fce5d2..9dc69553bf 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.id == u.id or 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.id == u.id or v.admin_level >= PERMS['VIEW_PATRONS']) %}

Lifetime Donated: ${{u.lifetime_donated}}

{% endif %}