From 8bb587cc7a41da33817abe0e2aa31681ab443f4a Mon Sep 17 00:00:00 2001 From: SpudGunMan Date: Wed, 29 Oct 2025 11:22:32 -0700 Subject: [PATCH] Update checklist.py --- modules/checklist.py | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/modules/checklist.py b/modules/checklist.py index 281b1bc..3f0e895 100644 --- a/modules/checklist.py +++ b/modules/checklist.py @@ -325,6 +325,9 @@ def list_checkin(): if len(row) > 7 and row[7] and int(row[7]) > 0: routine = f" ⏰({row[7]}m)" + # Indicate approval status + approved_marker = "✅" if row[6] == 1 else "☑️" + # Check if overdue if checkin_id in overdue: overdue_minutes = overdue[checkin_id]['overdue_minutes'] @@ -338,7 +341,7 @@ def list_checkin(): else: status = f"{row[1]} checked-In for {timeCheckedIn}{routine}" - checkin_list += f"ID: {checkin_id} {status}" + checkin_list += f"ID: {checkin_id} {approved_marker} {status}" if row[5] != "": checkin_list += " 📝" + row[5] if row != rows[-1]: