aboutsummaryrefslogtreecommitdiff
path: root/src/web
diff options
context:
space:
mode:
authorCédric Bonhomme <cedric@cedricbonhomme.org>2016-09-11 16:37:04 +0200
committerCédric Bonhomme <cedric@cedricbonhomme.org>2016-09-11 16:37:04 +0200
commite65c5193be95ada04d1e9bb643d24e26f2097f41 (patch)
treee8ec2aa049fed47cb28bcab689ab306dc1d8706c /src/web
parentFixed bad URL. (diff)
downloadnewspipe-e65c5193be95ada04d1e9bb643d24e26f2097f41.tar.gz
newspipe-e65c5193be95ada04d1e9bb643d24e26f2097f41.tar.bz2
newspipe-e65c5193be95ada04d1e9bb643d24e26f2097f41.zip
Bugfix.
Diffstat (limited to 'src/web')
-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 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 %}
bgstack15