oef/templates/participants_show.html.tpl

32 lines
958 B
Smarty

{{ define "content" }}
<div class="container">
{{template "breadcrumb" toSlice "Partecipanti" (all "Participant") (.Data|string) "current"}}
{{template "show_header" dict "title" (.Data|string) "updatePath" (.Data.ID|update "Participant") "deletePath" (.Data.ID|delete "Participant")}}
<h2 class="karmen-relation-header">Informazioni generali</h2>
<p>
Il nome utente del partecipante è <strong>{{.Data.Username}}</strong>
</p>
<p>
La sua password è <strong>{{.Data.Password}}</strong>
</p>
<div class="row">
<div class="col-md-12">
{{$options := `
title: "Gare a cui il partecipante è iscritto"
model: "Contest"
icon: "fa fa-hourglass-start"
`}}
{{$noElements := "Il partecipante non è iscritto ad alcuna gara."}}
{{template "relation_list" dict "options" ($options|yaml) "data" .Data.Contests "noElements" $noElements}}
</div>
</div>
</div>
{{ end }}