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/templates/management.html | 20 +++++++++++++++----- src/web/views/bookmark.py | 10 ++++++++++ src/web/views/user.py | 6 ++++-- 3 files changed, 29 insertions(+), 7 deletions(-) (limited to 'src') diff --git a/src/web/templates/management.html b/src/web/templates/management.html index 2f5eda6f..61eafe75 100644 --- a/src/web/templates/management.html +++ b/src/web/templates/management.html @@ -2,11 +2,21 @@ {% block content %}
-

{{ _('Your subscriptions') }}

-

{{ _('You are subscribed to') }} {{ nb_feeds }} {{ _('feeds') }}. {{ _('Add') }} {{ _('a feed') }}.

-

{{ nb_articles }} {{ _('articles are stored in the database with') }} {{ nb_unread_articles }} {{ _('unread articles') }}.

-

{{ _('You have') }} {{ nb_categories }} {{ _('categories') }}.

- {{ _('Delete articles older than 10 weeks') }} +
+
+

{{ _('Your subscriptions') }}

+

{{ _('You are subscribed to') }} {{ nb_feeds }} {{ _('feeds') }}. {{ _('Add') }} {{ _('a feed') }}.

+

{{ nb_articles }} {{ _('articles are stored in the database with') }} {{ nb_unread_articles }} {{ _('unread articles') }}.

+

{{ _('You have') }} {{ nb_categories }} {{ _('categories') }}.

+ {{ _('Delete articles older than 10 weeks') }} +
+
+

{{ _('Your bookmarks') }}

+

{{ _('You have') }} {{ nb_bookmarks }} {{ _('bookmarks') }}.

+ {{ _('Delete all bookmarks') }} +
+
+

{{ _('OPML import/export') }}

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']) -- cgit