refactor(kanban): render board cards with hemplate

Move Kanban board/column/card rendering from Rust raw HTML assembly into hemplate partial views. Keep handler effects returning generated slot payloads and cover rendered structure with scraper.

req: html_safety/002

req: view/001

req: test/005
This commit is contained in:
slhx agent
2026-05-25 21:45:25 +02:00
parent c655d877ca
commit bd35347fa2
4 changed files with 99 additions and 40 deletions
@@ -0,0 +1,6 @@
<section class="column">
<h2>{+ self.title +}</h2>
<template h-for="card in &self.cards">
{+ card +}
</template>
</section>