Reverse order of recent notes to show most recent first

This commit is contained in:
2024-05-16 21:03:14 -04:00
parent b817ac7e23
commit 7beb08c72d
2 changed files with 6 additions and 7 deletions

View File

@ -48,8 +48,8 @@
</tr>
</thead>
<tbody>
{% for n in app.user.notes %}
{{ n.toTableRow() | raw }}<br />
{% for n in app.user.notes|reverse %}
{{ n.toTableRow()|raw }}<br />
{% endfor %}
</tbody>
</table>