oef/templates/schools.html.tpl

34 lines
815 B
Smarty
Raw Normal View History

2019-12-03 12:21:28 +01:00
{{ 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")}}
2020-01-27 15:22:11 +01:00
{{template "search_input" .Data}}
2019-12-03 12:21:28 +01:00
{{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">
2019-12-03 15:24:01 +01:00
{{$options := `noElements: "nessun partecipante"`}}
{{template "small" dict "options" ($options | yaml) "data" $element.Participants}}
2019-12-03 12:21:28 +01:00
</div>
</a>
{{end}}
{{end}}
</div>
</div>
{{ end }}