package tag import ( "spend-sparrow/internal/core" "spend-sparrow/internal/template/svg" ) templ page(tags []Tag) { @core.Breadcrumb([]string{"Home", "Tag"}, []string{"/", "/tag"})
@newItem() for _,tag:=range(tags ) { @item(tag) }
} templ editNew() {
@core.Breadcrumb([]string{"Home", "Tag", "New"}, []string{"/", "/tag", "/tag/new"})
@svg.Cancel() Cancel
} templ edit(tag Tag) {
@core.Breadcrumb([]string{"Home", "Tag", tag.Name}, []string{"/", "/tag", "/tag/" + tag.Id.String()})
@svg.Cancel() Cancel
} templ newItem() { New Tag
@svg.Plus()
} templ item(tag Tag) { { tag.Name } }