28 lines
914 B
Smarty
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 }}
|