aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--src/web/templates/history.html2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/web/templates/history.html b/src/web/templates/history.html
index 6be54d71..499fe50b 100644
--- a/src/web/templates/history.html
+++ b/src/web/templates/history.html
@@ -10,7 +10,7 @@
<h3>{{ year }}</h3>
{% endif %}
<ul class="list-group">
- {% for article in articles_counter %}
+ {% for article in articles_counter | sort(reverse = True) %}
{% if year == None %}
<li class="list-group-item"><a href="/history/{{ article }}">{{ article }}</a> : {{ articles_counter[article] }} articles</li>
{% elif month == None %}
bgstack15