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