oef/templates/participants_show.html.tpl

48 lines
1.3 KiB
Smarty
Raw Normal View History

2019-11-14 15:04:11 +01:00
{{ define "content" }}
<div class="container">
2019-11-15 10:41:32 +01:00
{{template "breadcrumb" toSlice "Partecipanti" (all "Participant") (.Data|string) "current"}}
2019-11-14 15:04:11 +01:00
{{template "show_header" dict "title" (.Data|string) "updatePath" (.Data.ID|update "Participant") "deletePath" (.Data.ID|delete "Participant")}}
2019-11-15 10:41:32 +01:00
<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>
2019-11-15 10:41:32 +01:00
</p>
2019-11-14 15:04:11 +01:00
<div class="row">
<div class="col-md-12">
{{$options := `
2019-11-15 10:41:32 +01:00
title: "Gare a cui il partecipante è iscritto"
model: "Contest"
icon: "fa fa-hourglass-start"
2019-11-14 15:04:11 +01:00
`}}
2019-11-15 10:41:32 +01:00
{{$noElements := "Il partecipante non è iscritto ad alcuna gara."}}
{{template "relation_list" dict "options" ($options|yaml) "data" .Data.Contests "noElements" $noElements}}
2019-11-14 15:04:11 +01:00
</div>
</div>
2019-11-22 11:16:27 +01:00
<div class="row">
<div class="col-md-12">
{{$options := `
title: "Prove del partecipante"
model: "Response"
icon: "fa fa-hourglass-start"
`}}
{{$noElements := "Al partecipante non è associata alcuna risposta."}}
{{template "relation_list" dict "options" ($options|yaml) "data" .Data.Responses "noElements" $noElements}}
</div>
</div>
2019-11-14 15:04:11 +01:00
</div>
{{ end }}