mirror of
https://codeberg.org/Mo8it/AdvLabDB.git
synced 2024-12-04 22:40:30 +00:00
Add login_context_processor
This commit is contained in:
parent
6a40098922
commit
ce7653186a
1 changed files with 6 additions and 1 deletions
|
@ -2,7 +2,7 @@ from flask import Blueprint, redirect, url_for
|
|||
from flask_login import current_user
|
||||
from flask_security.decorators import auth_required
|
||||
|
||||
from . import settings
|
||||
from . import settings, security
|
||||
from .model_dependent_funs import active_semester_str
|
||||
|
||||
bp = Blueprint("main", __name__, root_path="/", template_folder="templates")
|
||||
|
@ -18,6 +18,11 @@ def util_processor():
|
|||
return dict(active_semester_str=active_semester_str, current_user=current_user, footer=footer)
|
||||
|
||||
|
||||
@security.login_context_processor
|
||||
def login_context_processor():
|
||||
return dict(message=settings.get("login_view_message"))
|
||||
|
||||
|
||||
@bp.route("/")
|
||||
def index():
|
||||
if current_user.has_role("admin"):
|
||||
|
|
Loading…
Reference in a new issue