From aea01678fe2f5c22c62d7c1f8234d91aa38fe7b4 Mon Sep 17 00:00:00 2001 From: Cédric Bonhomme Date: Fri, 26 May 2017 09:31:39 +0200 Subject: Delete all bookmarks. --- src/web/views/user.py | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) (limited to 'src/web/views/user.py') diff --git a/src/web/views/user.py b/src/web/views/user.py index 34e0b513..6890b0e4 100644 --- a/src/web/views/user.py +++ b/src/web/views/user.py @@ -12,7 +12,7 @@ from lib import misc_utils from lib.data import import_opml, import_json from web.lib.user_utils import confirm_token from web.controllers import (UserController, FeedController, ArticleController, - CategoryController) + CategoryController, BookmarkController) from web.forms import ProfileForm, RecoverPasswordForm @@ -89,10 +89,12 @@ def management(): nb_articles = art_contr.read().count() nb_unread_articles = art_contr.read(readed=False).count() nb_categories = CategoryController(current_user.id).read().count() + nb_bookmarks = BookmarkController(current_user.id).read().count() return render_template('management.html', user=current_user, nb_feeds=nb_feeds, nb_articles=nb_articles, nb_unread_articles=nb_unread_articles, - nb_categories=nb_categories) + nb_categories=nb_categories, + nb_bookmarks=nb_bookmarks) @user_bp.route('/profile', methods=['GET', 'POST']) -- cgit