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:
@@ -0,0 +1,6 @@
|
||||
<section class="column">
|
||||
<h2>{+ self.title +}</h2>
|
||||
<template h-for="card in &self.cards">
|
||||
{+ card +}
|
||||
</template>
|
||||
</section>
|
||||
Reference in New Issue
Block a user