{{ define "content" }} {{$isAdmin := .Claims|isAdmin}} {{$isSchool := .Claims|isSchool}}
{{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")}}

Informazioni generali

Username
{{.Data.User.Username}}
Password
{{.Data.User.Password}}
Categoria
{{.Data.Category}}
{{if $isAdmin}} {{if $creatorUser:=.Data.CreatedBy}}
Creato da
{{$creatorUser.Username}}[{{$creatorUser.Role}}] {{$.Data.CreatedAt|prettyDateTime}}
IP di chi ha creato il partecipante
{{.Data.CreatorIP}}
{{end}} {{if $updaterUser:=.Data.UpdatedBy}}
Modificato da
{{$updaterUser.Username}}[{{$updaterUser.Role}}] {{$.Data.UpdatedAt|prettyDateTime}}
IP di chi ha modificato il partecipante
{{.Data.UpdaterIP}}
{{end}} {{end}}
{{$options := ` title: "Scuola di appartenenza del partecipante" model: "School" icon: "fa fa-school" `}} {{$noElements := "Il partecipante non appartiene ad alcuna scuola."}} {{template "relation_list" dict "options" ($options|yaml) "data" .Data.School "noElements" $noElements}}
{{if $isAdmin}}
{{$options := ` title: "Categoria del partecipante" model: "Category" icon: "fa fa-object-group" `}} {{$noElements := "Il partecipante non appartiene ad alcuna categoria."}} {{template "relation_list" dict "options" ($options|yaml) "data" .Data.Category "noElements" $noElements}}
{{$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}}
{{$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}}
{{end}}
{{ end }}