From 5efa921e61eac0d4c73e47277d1e8a808188918e Mon Sep 17 00:00:00 2001 From: Mo8it Date: Mon, 30 May 2022 17:26:16 +0200 Subject: [PATCH] Add feedback notice --- advlabdb/routes.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/advlabdb/routes.py b/advlabdb/routes.py index 1d52d80..c91679e 100644 --- a/advlabdb/routes.py +++ b/advlabdb/routes.py @@ -9,7 +9,7 @@ from .models import Semester @app.context_processor def util_processor(): author_email = "mo8it@proton.me" - footer = f"

This website is still under development (beta release)! If you have any questions, find any bugs or want some feature, please write a formless email to Mo Bitar: {author_email}


" + footer = f"

This website is still under development (beta release)! If you have any questions, find any bugs or want some feature, please write a formless email to Mo Bitar: {author_email}. Feedback is also welcome :)


" return dict(active_semester_repr=active_semester_repr, current_user=current_user, footer=footer)