home · contact · privacy
Improve calories counter.
authorChristian Heller <c.heller@plomlompom.de>
Mon, 2 Oct 2023 19:54:01 +0000 (21:54 +0200)
committerChristian Heller <c.heller@plomlompom.de>
Mon, 2 Oct 2023 19:54:01 +0000 (21:54 +0200)
calories.py

index 54fb64e2d94be3f98ce2a743823c2c3db241a60a..7a4846acdf40b5304fc5cc4ba088de48d16830da 100644 (file)
@@ -296,12 +296,12 @@ class MyServer(BaseHTTPRequestHandler):
                     "</tr>" % (db.eatables_selection(c.eatable_key), c.unit_count, r["cals"], r["sugar"])
         day_rows = ""
         for date, day in db.days.items():
-            day_rows += "<tr>"\
+            day_rows = "<tr>"\
                     "<td><input name=\"day_date\" type=\"hidden\" value=\"%s\" />%s</td>"\
                     "<td><input name=\"day_cals\" type=\"hidden\" step=\"0.1\" min=\"0\" value=\"%.1f\" />%.1f</td>"\
                     "<td><input name=\"day_sugar\" type=\"hidden\" step=\"0.1\" min=\"0\" value=\"%.1f\" />%.1f</td>"\
-                    "</tr>" % (date, date[:10], day.calories, day.calories, day.sugar_g, day.sugar_g)
-        day_rows += "<tr>"\
+                    "</tr>" % (date, date[:10], day.calories, day.calories, day.sugar_g, day.sugar_g) + day_rows
+        day_rows = "<tr>"\
                 "<th>today:</th><th></th><th></th><th>archive?</th>"\
                 "</tr>"\
                 "<tr>"\
@@ -309,7 +309,7 @@ class MyServer(BaseHTTPRequestHandler):
                 "<td><input name=\"new_day_cals\" type=\"hidden\" value=\"%.1f\" readonly />%.1f</td>"\
                 "<td><input name=\"new_day_sugar\" type=\"hidden\" value=\"%.1f\" readonly />%.1f</td>"\
                 "<td><input name=\"archive_day\" type=\"checkbox\" /></td>"\
-                "</tr>" % (db.today_date, db.today.calories, db.today.calories, db.today.sugar_g, db.today.sugar_g)
+                "</tr>" % (db.today_date, db.today.calories, db.today.calories, db.today.sugar_g, db.today.sugar_g) + day_rows
         page = build_page(eatables, consumptions, db.eatables_selection(), day_rows)
         self.wfile.write(bytes(page, "utf-8"))