You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
29 lines
845 B
29 lines
845 B
# mykanban2
|
|
|
|
## A lite weight KanBan Board
|
|
|
|
## Uses PHP, JavaScript, PDO with SQLite3 DB.
|
|
|
|
```
|
|
In the Index.html file, you can modify the assignee's:
|
|
<span class="form-row">
|
|
<label class="form-row-label" for="task-assign">Assignee</label>
|
|
<select class="form-row-input" name="task-assign" id="task-assign">
|
|
<option value="me">Me</option>
|
|
<option value="dev">Developers</option>
|
|
<option value="other">Other</option>
|
|
</select>
|
|
</span>
|
|
|
|
In assets/js/view/Kanban.js, you may modify the Columns:
|
|
static columns() {
|
|
return [
|
|
{ id: 1, title: "Todo/Backlog" },
|
|
{ id: 2, title: "Ready" },
|
|
{ id: 3, title: "Work in Progress" },
|
|
{ id: 4, title: "QA" },
|
|
{ id: 5, title: "Completed" },
|
|
{ id: 6, title: "Archived" }
|
|
];
|
|
}
|
|
```
|
|
|