diff options
-rw-r--r-- | src/web/templates/history.html | 2 |
1 files changed, 1 insertions, 1 deletions
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 %} <li class="list-group-item"><a href="{{ url_for("articles.history", year=year, month=article) }}">{{ article | month_name }}</a> : {{ articles_counter[article] }} articles</li> {% else %} - {% for article in articles | sort(attribute="date", reverse = True) %} + {% for article in articles %} <li class="list-group-item">{{ article.date | datetime }} - <a href="/article/{{ article.id }}">{{ article.title | safe }}</a></li> {% endfor %} {% endif %} |