fixed some issues with profile and events

This commit is contained in:
2025-05-29 22:40:59 +02:00
parent 8f24e21d5d
commit 37fcc5f34c
7 changed files with 79 additions and 18 deletions

2
app.py
View File

@@ -35,7 +35,7 @@ def create_app():
@app.context_processor
def inject_csrf_token():
return dict(csrf_token=generate_csrf())
return dict(csrf_token=lambda: generate_csrf())
@app.context_processor
def inject_config():