A light weight PHP PDO SQLite3 KanBan Board.
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.
 
 
 
 
Robert a1be422995 V-0.0.1 4 hours ago
api V-0.0.1 4 hours ago
assets V-0.0.1 4 hours ago
README.md V-0.0.1 4 hours ago
index.html V-0.0.1 4 hours ago

README.md

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" }
        ];
    }