how DevEx @ RSK uses it
TODO image of a kanban board in other software
"Projects","Assignees","Type","Size","Status"
"Bar","Owanate","Docs","L","Doing"
"Foo","Brendan","Event","M","Backlog"
"Baz","Gino","Fix","S","ToDo"
"Luna","Aleks","Feature","L","Done"
(A single CSV)
quick
- all tasks in a kanban boardmain
- all tasks in split kanban board per personactive
- only todo and doing taskslist
- all tasks except done in a simple listEach view –> SQL statement
SELECT
–> "Properties"WHERE
–> "Filters"GROUP BY
–> "Group", "Sub-group"SORT BY
–> "Sort"We'll use only: Board + Table
all tasks except done
TODO image of completed list view
Assignees
, Type
, Size
, Status
status is not done
status descending
list view: view type
list view: properties
add columns
properties
list view: group
(none)
list view: filters
list view: sort
all tasks in split kanban board per person
TODO image of completed main view
Assignees
, Type
, Size
, Status
Assignees
Status
status is todo
or status is doing
status descending
main view: view type
main view: properties
main view: group
main view: sub-group
main view: filters
main view: sort
all tasks in a kanban board
same as main view, but without "subgroup"
TODO image of quick view
Assignees
, Type
, Size
, Status
Assignees
status is todo
or status is doing
status descending
quick view: view type
quick view: properties
quick view: group
quick view: sub-group
none
(difference with main
board)
quick view: filters
quick view: sort
Board set up complete!
… final touches
fin