oef/templates/schools.html.tpl
2020-01-27 15:22:11 +01:00

33 lines
815 B
Smarty

{{ define "content" }}
<div class="container">
{{$options := `
title: "Scuole"
buttonTitle: "Crea nuova scuola"
`}}
{{template "read_all_header" dict "options" ($options | yaml) "lengthData" (len .Data) "modelPath" (create "School")}}
{{template "search_input" .Data}}
{{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 "School"}}>
<span class="fa fa-user"></span>
{{$element|string}}
<div class="text-right">
{{$options := `noElements: "nessun partecipante"`}}
{{template "small" dict "options" ($options | yaml) "data" $element.Participants}}
</div>
</a>
{{end}}
{{end}}
</div>
</div>
{{ end }}