- html/template sistem: layout, dashboard, column, task-card, task-detail - Dark tema CSS, responsive grid (5→3→2→1 kolona) - HTMX: klik→detalj panel, move dugmad, auto-refresh active kolone - /report/:id za prikaz izveštaja - Slide-in animacija za detalj panel - 16 server testova, 83 ukupno — svi prolaze - T08 premešten u done/ Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
15 lines
346 B
Go
15 lines
346 B
Go
// Package web embeds static assets and templates for the KAOS dashboard.
|
|
package web
|
|
|
|
import "embed"
|
|
|
|
// StaticFS contains embedded static files (htmx, sortable, css).
|
|
//
|
|
//go:embed static/*
|
|
var StaticFS embed.FS
|
|
|
|
// TemplatesFS contains embedded HTML templates.
|
|
//
|
|
//go:embed templates/*.html templates/partials/*.html
|
|
var TemplatesFS embed.FS
|