{{ define "content" }} {{$isAdmin := .Claims|isAdmin}} {{$isParticipant := .Claims|isParticipant}}
{{if $isAdmin}} {{template "breadcrumb" toSlice "Prove dei partecipanti" (all "Response") (.Data|string) "current"}} {{template "show_header" dict "title" (.Data|string) "updatePath" (.Data.ID|update "Response") "deletePath" (.Data.ID|delete "Response")}} {{end}} {{if $isParticipant}} {{if .Data.IsActive}} {{$options := `{updateButtonTitle: "Vai alla gara!"}`}} {{template "show_header" dict "options" ($options|yaml) "title" (.Data|string) "updatePath" (.Data.ID|update "Response")}} {{end}} {{end}}

Informazioni generali

Periodo di attività
{{if not (.Data.Contest.Date|zeroTime)}} Giorno {{.Data.Contest.Date|prettyDate}} dalle ore {{.Data.Contest.StartTime|convertTime}} alle ore {{.Data.Contest.EndTime|convertTime}} {{- if not .Data.IsActive -}} [Scaduta o non ancora attiva]{{- end -}} {{else}} La gara è sempre attiva. {{end}}
{{if not (.Data.Contest.Date|zeroTime)}}
Prima visualizzazione
{{if not (.Data.StartTime|zeroTime)}} Giorno {{.Data.StartTime|prettyDate}} alle ore {{.Data.StartTime|convertTime}} {{else}} Il partecipante non ha ancora visualizzato la prova. {{end}}
{{end}} {{if $isAdmin}}
Ordine delle domande
{{.Data.QuestionsOrder}}
Risposte fornite (IDs)
{{if .Data.AnswersIDs}}
{{printf "[%v]" .Data.AnswersIDs}}
{{else}}
nessuna risposta fornita
{{end}}
Punteggio
{{.Data.Score}}
{{if $creatorUser:=.Data.CreatedBy}}
Creato da
{{$creatorUser.Username}}[{{$creatorUser.Role}}] {{$.Data.CreatedAt|prettyDateTime}} da {{.Data.CreatorIP}}
{{end}} {{if $updaterUser:=.Data.UpdatedBy}}
Modificato da
{{$updaterUser.Username}}[{{$updaterUser.Role}}] {{$.Data.UpdatedAt|prettyDateTime}} da {{.Data.UpdaterIP}}
{{end}} {{end}}
{{if .Data.Contest.Description}}

Descrizione della prova

{{.Data.Contest.Description|markdown|html}}
{{end}} {{if $isParticipant}}

Suggerimenti

{{if .Data.IsActive}}

Per iniziare o riprendere la gara clicca sul pulsante a destra. Vai alla gara!

{{else}}

La gara è scaduta o non è ancora attiva.

{{end}}
{{end}} {{if $isAdmin}}
{{$options := ` title: "Domande" model: "Question" icon: "fa fa-question-circle" `}} {{$noElements := "La prova del partecipante non contiene alcuna domanda."}} {{template "relation_list" dict "options" ($options|yaml) "data" .Data.Questions "noElements" $noElements}}
{{end}}
{{ end }}