feat(web): add Board page with Kanban columns and task cards

Server-rendered Kanban board with 4 status columns (Pending, Active,
Paused, Completed), task cards with category colors and elapsed time,
filter bar with category chips and subtask toggle, and inline create
task form. All handlers support htmx partial updates for status
transitions (start, pause, resume, complete, abandon, create).

Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
This commit is contained in:
2026-03-01 22:17:45 -05:00
parent bef7916cf8
commit e34c5d561f
8 changed files with 459 additions and 1 deletions

View File

@@ -0,0 +1,12 @@
@page
@model TaskTracker.Api.Pages.BoardModel
<div id="board-content" class="board-page">
<partial name="Partials/_FilterBar" model="Model" />
<div id="kanban-board" class="kanban-grid">
@foreach (var col in Model.Columns)
{
<partial name="Partials/_KanbanColumn" model="col" />
}
</div>
</div>