Skip to content

Commit 122bd7a

Browse files
Invert Deleted Message Log Order
Inverts the order messages are displayed in on the logs page to match the order they would be displayed in on discord (and how they would be read) Signed-off-by: Hassan Abouelela <[email protected]>
1 parent 301be77 commit 122bd7a

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

pydis_site/templates/staff/logs.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@
1414
<li>Date: {{ deletion_context.creation }}</li>
1515
</ul>
1616
<div class="is-divider has-small-margin"></div>
17-
{% for message in deletion_context.deletedmessage_set.all %}
17+
{% for message in deletion_context.deletedmessage_set.all reversed %}
1818
<div class="discord-message">
1919
<div class="discord-message-header">
2020
<span class="discord-username"

0 commit comments

Comments
 (0)