Last active
April 27, 2021 15:14
-
-
Save lylejantzi3rd/e48701b01546c29d7c3e9cbbf5a064fc to your computer and use it in GitHub Desktop.
Jobs
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
Jobs | |
Jobs List | |
New Job -> New Job | |
Click on Job -> Job Details | |
Sort Column -> Jobs List | |
Filter Column -> Jobs List | |
Change Status Dropdown -> Jobs List | |
Job | |
Job Details | |
Edit -> Edit Job | |
Close -> Jobs List | |
Add Item -> Job Details | |
Delete Item -> Job Details | |
New Job | |
Close -> Jobs List | |
Submit -> Jobs List | |
Edit Job | |
Close -> Job Details | |
Submit -> Job Details |
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