Last active
October 4, 2018 02:53
-
-
Save brandondrew/3ee4a30cf40815ee9952c71b479266ec to your computer and use it in GitHub Desktop.
Proposed Performance Pilot Workflow - States
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
Proposed Performance Pilot Workflow - States | |
No Review Exists* | |
Create New Form -> New | |
Review In Process | |
Save as Draft -> Draft | |
Share with Employee -> Awaiting Comments | |
Delete -> No Review Exists | |
New | |
Draft | |
Awaiting Comments | |
Employee Comments -> Awaiting Comments | |
Supervisor Edits and Comments -> Awaiting Comments | |
Supervisor Signs -> Awaiting Employee Signature | |
Awaiting Employee Signature | |
Employee Signs -> Review Done | |
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; | |
let x = $("h1", | |
{style: {color: "darkBlue"}}, | |
`The current state is: ${current_state_name}`); | |
return null; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment