diff options
| author | Alexander_Kabui | 2024-09-24 16:26:37 +0300 |
|---|---|---|
| committer | Alexander_Kabui | 2024-09-24 16:26:37 +0300 |
| commit | 4da741afe14b7d87b0ce080240f7ad008903d7c7 (patch) | |
| tree | d555b02f9651ed5ce0dd683cac456adf0d01d32e | |
| parent | a4b60d87476a3f86c7ec537cb8700dca3c9cb79c (diff) | |
| download | genenetwork2-4da741afe14b7d87b0ce080240f7ad008903d7c7.tar.gz | |
Fix: use logged_in function to check user auth status.
| -rw-r--r-- | gn2/wqflask/templates/base.html | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gn2/wqflask/templates/base.html b/gn2/wqflask/templates/base.html index 5c357c45..8d477659 100644 --- a/gn2/wqflask/templates/base.html +++ b/gn2/wqflask/templates/base.html @@ -177,7 +177,7 @@ </li> </ul> </li> - {% if g.user_session.logged_in %} + {% if logged_in() %} <li> <a href="/edit_account_settings" class="dropdown-toggle" |
