{{define "body"}}

Categories

{{template "flashes" .}} {{range $category := .categories}} {{template "row-category" dict "category" $category "categories" $.categories}} {{end}} {{end}} {{define "row-category"}}
{{stringTimes .category.Depth "- "}} {{.category.Name}}
delete
{{range $child := .category.Children}} {{template "row-category" dict "category" $child "categories" $.categories}} {{end}} {{end}} {{define "option-category"}} {{range $child := .category.Children}} {{template "option-category" dict "category" $child "id" $.id}} {{end}} {{end}}