From 05ed82ac9f55fb1cbe030078de5f6031111b90ce Mon Sep 17 00:00:00 2001 From: Mo8it Date: Fri, 17 Jun 2022 22:24:23 +0200 Subject: [PATCH] Adjust footer --- advlabdb/routes.py | 4 ++-- pyproject.toml | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/advlabdb/routes.py b/advlabdb/routes.py index c6e5001..c309789 100644 --- a/advlabdb/routes.py +++ b/advlabdb/routes.py @@ -8,8 +8,8 @@ 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}. Feedback is also welcome :)


" + author_email = "mobitar@students.uni-mainz.de" + 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 (german/english) to Mo Bitar: {author_email}. Feedback is also welcome :)


" return dict(active_semester_str=active_semester_str, current_user=current_user, footer=footer) diff --git a/pyproject.toml b/pyproject.toml index 7c179df..1d00f75 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "advlabdb" -version = "0.5.0" +version = "0.5.1" description = "Database with a web interface for labs." authors = ["Mo Bitar "] readme = "README.adoc"