Fix post ordering in reply view

I think this was database-specific. Replies should now be ordered by
their ID.

Signed-off-by: Alek Ratzloff <alekratz@gmail.com>
This commit is contained in:
2022-07-18 19:10:04 -07:00
parent 0847ea310c
commit 08b4fe0086
2 changed files with 4 additions and 2 deletions

View File

@@ -44,7 +44,7 @@
{# posts #}
<div class="row thread">
{% include "board/post_snippet.html" %}
{% for post in post.replies.all %}
{% for post in replies %}
<div class="row reply">
{% include "board/post_snippet.html" %}
</div>