From 8b83decec5d0184e03a306ad1f6b9537cafb3ded Mon Sep 17 00:00:00 2001 From: Cédric Bonhomme Date: Wed, 28 Nov 2012 13:43:00 +0100 Subject: Display the title of an article in the tab of the browser (for the /article page). --- source/pyAggr3g470r.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'source/pyAggr3g470r.py') diff --git a/source/pyAggr3g470r.py b/source/pyAggr3g470r.py index a399a23d..3f5132df 100755 --- a/source/pyAggr3g470r.py +++ b/source/pyAggr3g470r.py @@ -145,7 +145,7 @@ class pyAggr3g470r(object): tmpl = lookup.get_template("index.html") return tmpl.render(feeds=feeds, nb_feeds=len(feeds), mongo=self.mongo, \ nb_favorites=nb_favorites, nb_unread_articles=nb_unread_articles, \ - nb_mail_notifications=nb_mail_notifications) + nb_mail_notifications=nb_mail_notifications, header_text=nb_unread_articles) index.exposed = True @@ -329,7 +329,7 @@ class pyAggr3g470r(object): previous = liste[0] tmpl = lookup.get_template("article.html") - return tmpl.render(article=article, previous=previous, following=following, \ + return tmpl.render(header_text=article["article_title"], article=article, previous=previous, following=following, \ diaspora=conf.DIASPORA_POD, feed=feed, description=description) article.exposed = True -- cgit