diff options
Diffstat (limited to 'src/web/views')
-rw-r--r-- | src/web/views/bookmark.py | 10 | ||||
-rw-r--r-- | src/web/views/user.py | 6 |
2 files changed, 14 insertions, 2 deletions
diff --git a/src/web/views/bookmark.py b/src/web/views/bookmark.py index cc43f191..93da0023 100644 --- a/src/web/views/bookmark.py +++ b/src/web/views/bookmark.py @@ -146,6 +146,16 @@ def delete(bookmark_id=None): return redirect(redirect_url()) +@bookmarks_bp.route('/delete', methods=['GET']) +@login_required +def delete_all(): + "Delete all bookmarks." + bookmark = BookmarkController(current_user.id).read().delete() + db.session.commit() + flash(gettext("Bookmarks successfully deleted."), 'success') + return redirect(redirect_url()) + + @bookmark_bp.route('/bookmarklet', methods=['GET', 'POST']) @login_required def bookmarklet(): 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']) |