From 00a4604867c772a2cb3b14c5963ce1e1a6170f7d Mon Sep 17 00:00:00 2001 From: manetta Date: Thu, 6 May 2021 22:01:00 +0200 Subject: [PATCH] in response to issue #15: adding reversed order to the pages --- LogBot/template.html | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/LogBot/template.html b/LogBot/template.html index 8fdddb6..f6038d5 100644 --- a/LogBot/template.html +++ b/LogBot/template.html @@ -15,9 +15,9 @@
{{ sorted.append(int_num) }}
{% endfor %} - {% for num in sorted | sort %} + {% for num in sorted | sort | reverse %}
-

[{{ num | string }}]

+

{{ num | string }}

{{ db[num|string] }}

{% endfor %}