From 5b860175b5ac8071855bb0dae63eb2f9c97c5331 Mon Sep 17 00:00:00 2001 From: Cédric Bonhomme Date: Thu, 7 Apr 2016 12:05:00 +0200 Subject: Feeds are ordered by tittle in the feeds page. --- src/web/views/feed.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/web/views') diff --git a/src/web/views/feed.py b/src/web/views/feed.py index 69e093b2..b6e0974a 100644 --- a/src/web/views/feed.py +++ b/src/web/views/feed.py @@ -29,7 +29,7 @@ def feeds(): "Lists the subscribed feeds in a table." art_contr = ArticleController(current_user.id) return render_template('feeds.html', - feeds=FeedController(current_user.id).read(), + feeds=FeedController(current_user.id).read().order_by('title'), unread_article_count=art_contr.count_by_feed(readed=False), article_count=art_contr.count_by_feed()) -- cgit