From 2a053b57f5814d430656d087803e279f4d1e5523 Mon Sep 17 00:00:00 2001 From: Robin Sonnabend <robin@fsmpi.rwth-aachen.de> Date: Sat, 7 Nov 2015 11:26:12 +0100 Subject: [PATCH] Fixed is_authenticated --- templates/content_index.html | 2 +- templates/layout.html | 6 +++--- templates/speech_index.html | 2 +- 3 files changed, 5 insertions(+), 5 deletions(-) diff --git a/templates/content_index.html b/templates/content_index.html index 5470e49..b076ce5 100644 --- a/templates/content_index.html +++ b/templates/content_index.html @@ -4,7 +4,7 @@ <h3 class="mdl-card__title-text">{{ event.name }}: {{ speaker.name }}</h3> </div> <div class="mdl-card__actions"> - {% if current_user.is_authenticated and "user" in current_user.roles %} + {% if current_user.is_authenticated() and "user" in current_user.roles %} <a href="{{ url_for("speech.index", event=event.id) }}"> <button type="button" class="mdl-button mdl-js-button mdl-button--raised mdl-button--colored"> <i class="material-icons" role="presentation">build</i> diff --git a/templates/layout.html b/templates/layout.html index ee9b659..3cf7367 100644 --- a/templates/layout.html +++ b/templates/layout.html @@ -44,7 +44,7 @@ <header class="rede-drawer-header"> <div class="rede-account-dropdown"> <span> - {% if current_user.is_authenticated %} + {% if current_user.is_authenticated() %} <p class="md-24"> <i class="material-icons md-48"> {% if "user" in current_user.roles and not "admin" in current_user.roles %} @@ -69,7 +69,7 @@ </button> </span> <ul class="mdl-menu mdl-menu--bottom-left mdl-js-menu mdl-js-ripple-effet" for="accbtn"> - {% if current_user.is_authenticated %} + {% if current_user.is_authenticated() %} <li class="mdl-menu__item"><a class="mdl-navigation__link" href="{{ url_for("logout") }}">Logout</a></li> {% else %} <li class="mdl-menu__item"><a class="mdl-navigation__link" href="{{ url_for("login") }}">Login</a></li> @@ -83,7 +83,7 @@ <a class="mdl-navigation__link" href="{{ url_for("speech.index") }}"><i class="mdl-color-text--blue-grey-400 material-icons" role="presentation">build</i>Handle speakers</a> {% endif %} <a class="mdl-navigation__link" href="{{ url_for("speech.show") }}"><i class="mdl-color-text--blue-grey-400 material-icons" role="presentation">announcement</i>Pending speakers</a> - {% if current_user.is_authenticated and "admin" in current_user.roles %} + {% if current_user.is_authenticated() and "admin" in current_user.roles %} <a class="mdl-navigation__link" href="{{ url_for("admin.index") }}"><i class="mdl-color-text--blue-grey-400 material-icons" role="presentation">computer</i>Administration</a> {% block additional_sidelinks %} <!-- put your additional sidelinks here --> diff --git a/templates/speech_index.html b/templates/speech_index.html index 6c3f205..961f145 100644 --- a/templates/speech_index.html +++ b/templates/speech_index.html @@ -56,7 +56,7 @@ {% endfor %} </tbody> </table> - {% if current_user.is_authenticated and "user" in current_user.roles %} + {% if current_user.is_authenticated() and "user" in current_user.roles %} {{ render_form(add_form, action_url=url_for('.add', next=".index", event=event_id), action_text="Add", title="Add Speaker to {}".format(event.name)) }} {% endif %} {% endfor %} -- GitLab