Using flask_login session with jinja2 templates

冷暖自知 提交于 2019-12-10 01:10:11

问题


I have simple jinja2 template with registration/login links, I should hide them when user logged in, I also use flask_login module for this stuff.

Question is: How should I identify is user logged in in jinja2 templates?


回答1:


Flask-Login adds the current_user variable to your templates:

{% if current_user.is_authenticated %}
    ...
{% else %}
    ...
{% endif %}

They mention this briefly in the documentation.



来源:https://stackoverflow.com/questions/18361151/using-flask-login-session-with-jinja2-templates

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!