Skip to content

Instantly share code, notes, and snippets.

@basham
Last active January 13, 2020 15:23
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save basham/8833d149b5c6da139ed1ced3f4a234d3 to your computer and use it in GitHub Desktop.
Save basham/8833d149b5c6da139ed1ced3f4a234d3 to your computer and use it in GitHub Desktop.
Kiosk Admin
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
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