start user page port

This commit is contained in:
2025-06-30 12:28:10 +03:00
parent bd56310067
commit fd257e701f
5 changed files with 143 additions and 6 deletions

View File

@ -84,6 +84,6 @@ def create_app():
@app.context_processor
def inject_auth():
return {"is_logged_in": is_logged_in, "get_active_user": get_active_user}
return {"is_logged_in": is_logged_in, "get_active_user": get_active_user, "active_user": get_active_user()}
return app