From e65c5193be95ada04d1e9bb643d24e26f2097f41 Mon Sep 17 00:00:00 2001 From: Cédric Bonhomme Date: Sun, 11 Sep 2016 16:37:04 +0200 Subject: Bugfix. --- src/web/templates/history.html | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/web') diff --git a/src/web/templates/history.html b/src/web/templates/history.html index caa0b057..d9ee9538 100644 --- a/src/web/templates/history.html +++ b/src/web/templates/history.html @@ -16,7 +16,7 @@ {% elif month == None %}
  • {{ article | month_name }} : {{ articles_counter[article] }} articles
  • {% else %} - {% for article in articles | sort(attribute="date", reverse = True) %} + {% for article in articles %}
  • {{ article.date | datetime }} - {{ article.title | safe }}
  • {% endfor %} {% endif %} -- cgit