File size: 739 Bytes
7288c34
 
 
 
 
 
 
 
194f4c3
7288c34
 
 
 
 
 
 
194f4c3
7288c34
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
"""Operations table widget definitions."""

OPERATIONS_TABLE_WIDGETS: dict = {
    "wid_tbl_appt_queue_today_001": {
        "title": "Today's Appointment Queue",
        "category": "operations_tables",
        "unit": "count",
        "widget_type": "table",
        "description": "Today's booked and checked-in appointments ordered by start time",
        "drill_down_url": "/retail/appointments",
    },
    "wid_tbl_appt_upcoming_001": {
        "title": "Upcoming Appointments",
        "category": "operations_tables",
        "unit": "count",
        "widget_type": "table",
        "description": "Booked appointments in the next 7 days with service and staff details",
        "drill_down_url": "/retail/appointments",
    },
}