KAOS/code/web/templates/partials/column.html
djuka aabdfa9e50 T10: Drag & Drop — premesti task prevlačenjem
- Sortable.js na Kanban board sa drag & drop
- Server-side validacija: allowedMoves mapa, isMoveAllowed()
- Zabranjeni potezi vraćaju 403 (ready→active, active→review)
- Toast notifikacije (zeleni uspeh, crveni greška)
- Ghost/chosen/drag CSS animacije
- Board auto-refresh posle svakog poteza
- 7 novih testova, 90 ukupno — svi prolaze
- T09 premešten u done/

Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
2026-02-20 12:18:50 +00:00

15 lines
464 B
HTML

{{define "column"}}
<div class="column" id="col-{{.Name}}"
{{if eq .Name "active"}}hx-get="/" hx-trigger="every 5s" hx-select="#col-active" hx-target="#col-active" hx-swap="outerHTML"{{end}}>
<div class="column-header">
<span>{{.Icon}} {{.Label}}</span>
<span class="column-count">{{.Count}}</span>
</div>
<div class="column-tasks" data-folder="{{.Name}}">
{{range .Tasks}}
{{template "task-card" .}}
{{end}}
</div>
</div>
{{end}}