oef/templates/schools_show.html.tpl
2019-12-03 12:21:28 +01:00

28 lines
914 B
Smarty

{{ define "content" }}
<div class="container">
{{template "breadcrumb" toSlice "Scuole" (all "School") (.Data|string) "current"}}
{{template "show_header" dict "title" (.Data|string) "updatePath" (.Data.ID|update "School") "deletePath" (.Data.ID|delete "School")}}
<h2 class="karmen-relation-header">Informazioni sulla scuola</h2>
<p>Il codice meccanografico della scuola è <strong>{{.Data.Code}}</strong>.</p>
<p>La mail istituzionale della scuola è <strong>{{.Data.Email}}</strong>.</p>
<div class="row">
<div class="col-md-12">
{{$options := `
title: "Partecipanti"
model: "Participant"
icon: "fa fa-user"
`}}
{{$noElements := "La scuola non ha iscritto alcun partecipante."}}
{{template "relation_list" dict "options" ($options|yaml) "data" .Data.Participants "noElements" $noElements}}
</div>
</div>
</div>
{{ end }}