aboutsummaryrefslogtreecommitdiff
path: root/pyaggr3g470r/templates
diff options
context:
space:
mode:
authorCédric Bonhomme <cedric@cedricbonhomme.org>2015-09-18 22:08:10 +0200
committerCédric Bonhomme <cedric@cedricbonhomme.org>2015-09-18 22:08:10 +0200
commitea52b8088b6b0719d428de26c51e96a92cfb66bb (patch)
treed9ea9692c4bedb68e391cc63a7c784c400f4035d /pyaggr3g470r/templates
parentRemoved the article from the table of the page of favorite articles when it i... (diff)
downloadnewspipe-ea52b8088b6b0719d428de26c51e96a92cfb66bb.tar.gz
newspipe-ea52b8088b6b0719d428de26c51e96a92cfb66bb.tar.bz2
newspipe-ea52b8088b6b0719d428de26c51e96a92cfb66bb.zip
With the new version of Flask-Login is_authenticated is now a property.
Diffstat (limited to 'pyaggr3g470r/templates')
-rw-r--r--pyaggr3g470r/templates/layout.html2
1 files changed, 1 insertions, 1 deletions
diff --git a/pyaggr3g470r/templates/layout.html b/pyaggr3g470r/templates/layout.html
index 9b767649..6b29716b 100644
--- a/pyaggr3g470r/templates/layout.html
+++ b/pyaggr3g470r/templates/layout.html
@@ -36,7 +36,7 @@
<!-- Collect the nav links, forms, and other content for toggling -->
<div class="collapse navbar-collapse navbar-ex1-collapse">
<ul class="nav navbar-nav navbar-right">
- {% if g.user.is_authenticated() %}
+ {% if g.user.is_authenticated %}
<!-- <li><a href="{{ url_for("feed.form") }}"><span class="glyphicon glyphicon-plus-sign"></span> {{ _('Add a feed') }}</a></li> -->
<li class="dropdown">
<a href="#" class="dropdown-toggle" data-toggle="dropdown">
bgstack15