{{define "itemsAll:list_rows"}} {{ $rowCount := 0 }} {{ range .items }} {{.Title}} {{.Title}} {{.Type_title}} {{ if gt (len .Categories) 0 }} {{ range (stringToArray .Categories "|")}} {{ $category_id := index $.categoriesMap .}} {{ $category_id }} {{ end }} {{ end }} {{ if gt (len .Tags) 0 }} {{ range (stringToArray .Tags ",")}} {{ . }} {{ end }} {{ end }} {{ if eq .On_dashboard 1}} {{ template "item:remove_from_dashboard" .Id }} {{ else }} {{ template "item:add_to_dashboard" .Id }} {{ end }} {{ end }} {{ end }}