Remove overview route and template

Deleted the /overview route from user routes and removed the associated overview.html template. This cleans up unused code related to the daily nutrition overview feature.
This commit is contained in:
2025-08-07 20:29:03 +02:00
parent f1a6f81540
commit 26cbb48d1d
2 changed files with 0 additions and 74 deletions

View File

@@ -67,11 +67,6 @@ def edit_food_item(id: int):
return redirect(url_for("user.dashboard"))
@user_bp.route("/overview", methods=["GET"])
def overview():
return render_template("overview.html")
@user_bp.route("/", methods=["GET"])
def daily_log():
today = datetime.now(timezone.utc).date()