From 62fbbdcacdc09c18a179d8a36909f2d4fc6dcb39 Mon Sep 17 00:00:00 2001 From: Cédric Bonhomme Date: Sat, 9 Apr 2016 10:01:55 +0200 Subject: Add a link to the list of categories. --- src/web/views/user.py | 7 +++++-- 1 file changed, 5 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 f24da37a..1ce16ade 100644 --- a/src/web/views/user.py +++ b/src/web/views/user.py @@ -8,7 +8,8 @@ from flask.ext.login import login_required, current_user import conf from web import utils, notifications from web.lib.user_utils import confirm_token -from web.controllers import (UserController, FeedController, ArticleController) +from web.controllers import (UserController, FeedController, ArticleController, + CategoryController) from web.forms import ProfileForm, RecoverPasswordForm @@ -58,9 +59,11 @@ def management(): art_contr = ArticleController(current_user.id) nb_articles = art_contr.read().count() nb_unread_articles = art_contr.read(readed=False).count() + nb_categories = CategoryController(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_unread_articles=nb_unread_articles, + nb_categories=nb_categories) @user_bp.route('/profile', methods=['GET', 'POST']) -- cgit