aboutsummaryrefslogtreecommitdiff
path: root/src/web/views
diff options
context:
space:
mode:
Diffstat (limited to 'src/web/views')
-rw-r--r--src/web/views/views.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/web/views/views.py b/src/web/views/views.py
index ceb1ab10..5da13f17 100644
--- a/src/web/views/views.py
+++ b/src/web/views/views.py
@@ -48,7 +48,7 @@ def popular():
feeds = FeedController().count_by_link()
sorted_feeds = sorted(feeds.items(), key=operator.itemgetter(1),
reverse=True)
- return render_template('popular.html', popular=sorted_feeds)
+ return render_template('popular.html', popular=sorted_feeds[:100])
@current_app.route('/about', methods=['GET'])
bgstack15