Last active
June 23, 2023 09:05
-
-
Save 1zaak/996a18e045a32d6c7be9f8e2239e751b to your computer and use it in GitHub Desktop.
Restaurant Sketch
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
Restaurant Sketch | |
Onboarding | |
Sign up -> Registration Form | |
Login -> Dashboard | |
Registration Form | |
Restaurant name | |
Email of manager | |
Email of staffs | |
Submit -> Guided Tour | |
Guided Tour | |
Show screenshots of managing table states | |
Dashboard | |
Floor view | |
See todays bookings | |
Select tomorrows view | |
Select yesterdays view | |
Swap booked table | |
Upcoming bookings list | |
Handle walk in | |
Button -> Walk In Form | |
Handle booking arrival | |
Walk In Form | |
Customer Sketch | |
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