aboutsummaryrefslogtreecommitdiff
path: root/src/web/views
diff options
context:
space:
mode:
authorCédric Bonhomme <cedric@cedricbonhomme.org>2018-10-28 14:48:26 +0100
committerCédric Bonhomme <cedric@cedricbonhomme.org>2018-10-28 14:48:26 +0100
commite1eed1624349a87bd53449cf25d4c88f47b0479f (patch)
tree607b721b3d8391c4ba2bfa405397e58335bffc9c /src/web/views
parentProposition for the new stream page. (diff)
downloadnewspipe-e1eed1624349a87bd53449cf25d4c88f47b0479f.tar.gz
newspipe-e1eed1624349a87bd53449cf25d4c88f47b0479f.tar.bz2
newspipe-e1eed1624349a87bd53449cf25d4c88f47b0479f.zip
Added a listbox to select the categories.
Diffstat (limited to 'src/web/views')
-rw-r--r--src/web/views/user.py3
1 files changed, 1 insertions, 2 deletions
diff --git a/src/web/views/user.py b/src/web/views/user.py
index a697eb5b..693f24b7 100644
--- a/src/web/views/user.py
+++ b/src/web/views/user.py
@@ -73,8 +73,7 @@ def user_stream(per_page, nickname=None):
return render_template('user_stream.html', user=user,
articles=articles.offset(offset).limit(per_page),
category=category,
- pagination=pagination,
- nickname=nickname)
+ pagination=pagination)
@user_bp.route('/management', methods=['GET', 'POST'])
bgstack15