diff options
author | Cédric Bonhomme <cedric@cedricbonhomme.org> | 2016-09-11 16:37:04 +0200 |
---|---|---|
committer | Cédric Bonhomme <cedric@cedricbonhomme.org> | 2016-09-11 16:37:04 +0200 |
commit | e65c5193be95ada04d1e9bb643d24e26f2097f41 (patch) | |
tree | e8ec2aa049fed47cb28bcab689ab306dc1d8706c /src | |
parent | Fixed bad URL. (diff) | |
download | newspipe-e65c5193be95ada04d1e9bb643d24e26f2097f41.tar.gz newspipe-e65c5193be95ada04d1e9bb643d24e26f2097f41.tar.bz2 newspipe-e65c5193be95ada04d1e9bb643d24e26f2097f41.zip |
Bugfix.
Diffstat (limited to 'src')
-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 %} |