Enhanced Logbook layout

This commit is contained in:
2026-03-18 10:56:31 +08:00
parent 84837c4bf2
commit 4eaf9444f0
2 changed files with 456 additions and 312 deletions
+3
View File
@@ -22,6 +22,9 @@ final attendanceDateRangeProvider = StateProvider<ReportDateRange>((ref) {
);
});
/// Filter for logbook users (multi-select). If empty, all users are shown.
final attendanceUserFilterProvider = StateProvider<List<String>>((ref) => []);
/// All visible attendance logs (own for standard, all for admin/dispatcher/it_staff).
final attendanceLogsProvider = StreamProvider<List<AttendanceLog>>((ref) {
final client = ref.watch(supabaseClientProvider);