From f659ede27c7fd6313e0bfaa8217a3359c00d5843 Mon Sep 17 00:00:00 2001 From: Christian Heller <c.heller@plomlompom.de> 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; } </tr> <tr> <input type="hidden" name="keep_visible" value="0"> -<td><select name="eatable_key">{eatables_selection}</select></td> <td class="number"><input class="unit_count" name="unit_count" type="number" step="0.1" min="0" value="0" /></td> +<td><select name="eatable_key">{eatables_selection}</select></td> <td></td> </tr> </table> @@ -290,12 +290,12 @@ class MyServer(BaseHTTPRequestHandler): r = db.calc_consumption(c) consumptions += "<tr />"\ "<input type=\"hidden\" name=\"keep_visible\" value=\"1\"><input name=\"eatable_key\" type=\"hidden\" value=\"%s\">"\ - "<td>%s</td>"\ "<td class\"number\"><input class=\"unit_count number\" name=\"unit_count\" type=\"number\" min=\"0\" step=\"0.1\" value=\"%.1f\" /></td>"\ + "<td>%s</td>"\ "<td></td>"\ "<td class=\"number\">%.1f</td>"\ "<td class=\"number\">%.1f</td>"\ - "</tr>" % (c.eatable_key, db.eatables[c.eatable_key].title, c.unit_count, r["cals"], r["sugar"]) + "</tr>" % (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