Created
December 19, 2019 15:33
-
-
Save igponce/0b7372621c8df7d503df80760ec1eceb to your computer and use it in GitHub Desktop.
Kanban (trello-like) board in PlantUML
This file contains hidden or 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
@startuml Kanban Board | |
caption "Kanban board for 2019.12.19" | |
rectangle stack_TODO as "To-do" { | |
node Task3 [ | |
** Task Name ** | |
==== | |
This is the first task of the board. | |
Not yet assigned | |
] | |
node Task4 [ | |
** Task Name ** | |
==== | |
This is the 4th task of the board. | |
Assigned to **DEVELOPER1** | |
] | |
node Task5 [ | |
Task Name | |
==== | |
Another task of the board. | |
Assigned to someone | |
] | |
Task3 -[hidden]- Task4 | |
Task4 -[hidden]- Task5 | |
} | |
rectangle stack_DOING as "Doing" { | |
node Task2 [ | |
** Task#2 ** | |
==== | |
Another task of the board. | |
Assigned to **Competent_developer** | |
] | |
} | |
rectangle stack_DONE as "Done" { | |
node Task1 [ | |
This is the first task of the board. | |
Finished by **Another developer ** | |
] | |
} | |
stack_TODO -Right[hidden]- stack_DOING | |
stack_DOING -Right[hidden]- stack_DONE | |
@enduml |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment