From f659ede27c7fd6313e0bfaa8217a3359c00d5843 Mon Sep 17 00:00:00 2001 From: Christian Heller Date: Wed, 18 Oct 2023 22:16:36 +0200 Subject: [PATCH] Minor layout improvement to calories counter. --- calories.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/calories.py b/calories.py index 048aacc..5d2fc98 100644 --- a/calories.py +++ b/calories.py @@ -26,8 +26,8 @@ input[type="number"] { text-align: right; } - + @@ -290,12 +290,12 @@ class MyServer(BaseHTTPRequestHandler): r = db.calc_consumption(c) consumptions += ""\ ""\ - "%s"\ ""\ + "%s"\ ""\ "%.1f"\ "%.1f"\ - "" % (c.eatable_key, db.eatables[c.eatable_key].title, c.unit_count, r["cals"], r["sugar"]) + "" % (c.eatable_key, c.unit_count, db.eatables[c.eatable_key].title, r["cals"], r["sugar"]) day_rows = "" for date in sorted(db.days.keys()): day = db.days[date] -- 2.30.2