34 lines
808 B
Smarty
34 lines
808 B
Smarty
|
{{ define "content" }}
|
||
|
|
||
|
|
||
|
<div class="container">
|
||
|
{{$options := `
|
||
|
title: "Regions"
|
||
|
buttonTitle: "Crea nuovo Region"
|
||
|
`}}
|
||
|
|
||
|
{{template "read_all_header" dict "options" ($options | yaml) "lengthData" (len .Data) "modelPath" (create "Region")}}
|
||
|
{{template "search_input"}}
|
||
|
|
||
|
{{if not .}}
|
||
|
{{template "display_no_elements"}}
|
||
|
{{else}}
|
||
|
<div class="list-group" id="myUL">
|
||
|
{{range $element := .Data}}
|
||
|
<a class="list-group-item list-group-item-action" href={{$element.ID|show "Region"}}>
|
||
|
<span class="fa fa-user"></span>
|
||
|
{{$element|string}}
|
||
|
<div class="text-right">
|
||
|
{{$options := `noElements: "no subelements"`}}
|
||
|
{{/*template "small" dict "options" ($options | yaml) "data" $element.SubElements*/}}
|
||
|
</div>
|
||
|
</a>
|
||
|
{{end}}
|
||
|
{{end}}
|
||
|
</div>
|
||
|
|
||
|
</div>
|
||
|
|
||
|
|
||
|
{{ end }}
|