summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorAlexander Sulfrian <alex@spline.inf.fu-berlin.de>2016-09-29 03:47:47 +0200
committerwww-data <www-data@vm-accounts.spline.inf.fu-berlin.de>2016-09-29 03:48:14 +0200
commit1117506db94edd09ca2438cb418039c1a20e1090 (patch)
treec31f02589900048a58d51bc5e67dff62ef11f9ff
parent15a2856f8d5bf4ffdc7a246f8e7eacacc92ec38b (diff)
downloadweb-1117506db94edd09ca2438cb418039c1a20e1090.tar.gz
web-1117506db94edd09ca2438cb418039c1a20e1090.tar.bz2
web-1117506db94edd09ca2438cb418039c1a20e1090.zip
base: Add missing parentheses
-rw-r--r--accounts/templates/base.html2
1 files changed, 1 insertions, 1 deletions
diff --git a/accounts/templates/base.html b/accounts/templates/base.html
index dbb3d0b..db6f741 100644
--- a/accounts/templates/base.html
+++ b/accounts/templates/base.html
@@ -33,7 +33,7 @@
{%- if not no_login_message %}
<nav id="usermenu">
<ul>
- {%- if current_user.is_authenticated %}
+ {%- if current_user.is_authenticated() %}
<li>Angemeldet als <strong>{{ current_user.uid }}</strong></li>
{%- if current_user.uid in config.get('ADMIN_USERS', []) %}
<li><a href="{{ url_for('admin.index') }}">Admin</a></li>