2017-02-09 46 views
1

我正在使用需要登錄的flask-sqlalchemy webapp。只有當用戶登錄 註銷按鈕應該在頁面上看到 因此,所有這些頁面擴展的layout.html文件看起來像這樣:flask:遇到未知標記endif雖然標記被指定

<!DOCTYPE html> 
<html lang="en"> 



<head> 

    <meta charset="utf-8"> 
    <meta http-equiv="X-UA-Compatible" content="IE=edge"> 
    <meta name="viewport" content="width=device-width, initial-scale=1"> 
    <meta name="description" content=""> 
    <meta name="author" content=""> 

    <title>Login</title> 

    <link href="{{ url_for('static', filename='css/bootstrap.min.css') }}" rel="stylesheet"> 
    {% block head %} {% endblock %} 

</head> 

<body> 
{% block body %} 
<style type="text/css"> 
    #footer { 
    position : absolute; 
    bottom : 0; 
    } 
</style> 
{ % if session['logged_in'] %} 

<div id="footer" style="width:300px;height:100px"><a href=" {{url_for('logout')}}" style="width:100%;background:#f1f1f1;">Logout</a></div> 

{% endif %} 

{% endblock %} 


    <script src="{{ url_for('static', filename='js/jquery.js') }}"></script> 
    <script src="{{ url_for('static', filename='js/bootstrap.min.js') }}"></script> 

</body> 

</html> 

我得到的錯誤是:

TemplateSyntaxError: Encountered unknown tag 'endif'. Jinja was looking for the following tags: 'endblock'.

需要關閉的最內層塊是'塊'。

雖然端塊,如果標籤已被指定 請幫我解決這個問題

回答

2

嘗試在

{ % if session['logged_in'] %} 

,使之成爲取出空間之間{和%

{% if session['logged_in'] %}