Last active
December 19, 2018 00:26
-
-
Save brandondrew/6f5e2faee539fb80e3f7c83706c7f521 to your computer and use it in GitHub Desktop.
This file contains 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
# https://wikihub.berkeley.edu/display/robots/CC+-+20181213+More+Changes+to+Pilot+Specs | |
Proposed Performance Pilot Workflow - Newest | |
No Review Exists* | |
Create New Form -> Supervisor Starts Form | |
Review In Process | |
Supervisor Starts Form | |
Save -> Draft | |
Save & Share with Employee -> Participants Comment and Sign | |
New* | |
Draft | |
Participants Comment and Sign | |
Awaiting Comments* | |
Save -> Participants Comment and Sign | |
Employee Comments -> Participants Comment and Sign | |
Supervisor Edits and Comments -> Participants Comment and Sign | |
FIRST PERSON SIGNS -> Participants Comment and Sign | |
SECOND PERSON SIGNS -> Review Done | |
Employee Is Unavailable Or Refused To Acknowledge -> Review Done | |
Delete -> No Review Exists | |
Review Done |
This file contains 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