From 25a9238e1dacca4fa78b646225aa103b92131aa3 Mon Sep 17 00:00:00 2001 From: Yapollon Date: Tue, 23 Jan 2024 11:00:37 +0100 Subject: [PATCH] added new functionality --- app.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/app.py b/app.py index d15c462..503e64e 100644 --- a/app.py +++ b/app.py @@ -121,10 +121,10 @@ def index(): if current_user.is_authenticated: habits = current_user.get_habits() - name = "Hallo " + current_user.name + "du hurensohn" + name = "Hallo " + current_user.name else: habits = [] - name = "Bitte melde dich an." + name = "Bitte melde dich an, du Vollhorst." # habits = [("lesen", "eine Seite vor dem Schlafen gehen"), ("sport", "3x Gym")] return render_template(