Skip to content

Instantly share code, notes, and snippets.

@dariocravero
Created March 21, 2019 16:33
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 dariocravero/9d1e2f5b3024d54cd6da72a101813077 to your computer and use it in GitHub Desktop.
Save dariocravero/9d1e2f5b3024d54cd6da72a101813077 to your computer and use it in GitHub Desktop.
Task manager
Task manager
Progress bar
# can be filtered by meta tags, potentially automatically derived from notes through NLP
# meta tags could be grouped and saved as presets
# it would also display archived tasks, which by default won't be retrieved
Tasks filter
List of tasks
Task
# Basic info about the task eg: type, status, due date, etc
Card
click -> Details
# Has more things like comments. Shows in an overlay.
Details
back -> Card
# on when user is admin
# TODO expand
Admin section
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