hosts.tmpl (282B)
1 {{define "title"}}Hosts{{end}} 2 3 {{define "content"}} 4 {{range .}} 5 <div class="f-row justify-content:space-between"> 6 <a href="/objects/hosts/{{.Name}}">{{.DisplayName}} ({{.Name}})</a> 7 <chip class="{{if eq .State 0}}ok{{else}}bad{{end}}">{{.State}}</chip> 8 </div> 9 {{end}} 10 {{end}}