CSS changes, stupid ass typo fixed, ban history is sorted properly.

This commit is contained in:
some weird guy
2023-08-26 14:04:30 -07:00
parent 60ff989332
commit 7909335304
7 changed files with 113 additions and 98 deletions
@@ -49,7 +49,7 @@
{% endif %}
{% if post.creator.banned %}
<div class="hidden-content"><p>Content hidden because {{ post.creator.username }} was banned. </p>
{% if post.creator.active_ban %}
{% if post.creator.active_ban.reason %}
<p>Reason: {{post.creator.active_ban.reason }}
{% endif %}
<button type="button" class="hidden-content-button">View Anyway</button>
@@ -30,7 +30,7 @@
{% endif %}
{% if comment.creator.banned %}
<div class="hidden-content"><p>Content hidden because {{ comment.creator.username }} was banned. </p>
{% if comment.creator.active_ban %}
{% if comment.creator.active_ban.reason %}
<p>Reason: {{comment.creator.active_ban.reason }}
{% endif %}
<button type="button" class="hidden-content-button">View Anyway</button>
@@ -47,7 +47,7 @@
{% endif %}
{% if post.creator.banned %}
<div class="hidden-content"><p>Content hidden because {{ post.creator.username }} was banned. </p>
{% if post.creator.active_ban %}
{% if post.creator.active_ban.reason %}
<p>Reason: {{post.creator.active_ban.reason }}
{% endif %}
<button type="button" class="hidden-content-button">View Anyway</button>