Last active
January 13, 2020 15:23
-
-
Save basham/8833d149b5c6da139ed1ced3f4a234d3 to your computer and use it in GitHub Desktop.
Kiosk Admin
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Kiosk Admin | |
check in records -> Check in records | |
kiosks -> Kiosks | |
Check in records | |
# Filter by (and group by?): | |
# Campus, Care Unit, Kiosk, Service, | |
# Date (today, custom), Date range (this week, this semester, custom), | |
# Status (checked in, checked out), Student, | |
# List of students (Course, Class, Instructor, SIS Student Group, Caseload) | |
# | |
# Sort by: | |
# Check in datetime, Check out datetime, Student name | |
# | |
# Table columns: | |
# Student, Check in datetime, Check out datetime, | |
# Duration (actual or adjusted), Kiosk, Service | |
Check in list | |
new check in -> New check in | |
edit check in -> Edit check in | |
apply filter -> Check in list | |
select preset -> Check in list | |
select page -> Check in list | |
select check in -> Check in list | |
select student -> Student details | |
# Select: | |
# Student or Student list, Kiosk, Service, | |
# Check in datetime, Check out datetime, | |
# Duration, Notes | |
New check in | |
success -> Check in list | |
cancel -> Check in list | |
failure -> New check in | |
# Edit one or many | |
Edit check in | |
success -> Check in list | |
cancel -> Check in list | |
failure -> Edit check in | |
delete -> Check in list | |
# Summarize check ins. | |
# List requirements. | |
Student details | |
edit check in -> Edit check in | |
back -> Check in list | |
Kiosks |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
function render(model){ | |
let current_state_name = model.active_states[0].name; | |
return $("h1", | |
{style: {color: "darkBlue"}}, | |
`The current state is: ${current_state_name}`); | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment