oef/templates/responses_show.html.tpl

70 lines
2.4 KiB
Smarty
Raw Normal View History

2019-11-18 17:04:07 +01:00
{{ define "content" }}
2019-12-13 12:55:11 +01:00
{{$isAdmin := .Claims|isAdmin}}
{{$isParticipant := .Claims|isParticipant}}
2019-11-18 17:04:07 +01:00
<div class="container">
2019-12-18 13:00:45 +01:00
{{if $isAdmin}}
2019-12-13 12:55:11 +01:00
{{template "breadcrumb" toSlice "Prove dei partecipanti" (all "Response") (.Data|string) "current"}}
2019-11-18 17:04:07 +01:00
{{template "show_header" dict "title" (.Data|string) "updatePath" (.Data.ID|update "Response") "deletePath" (.Data.ID|delete "Response")}}
2019-12-18 13:00:45 +01:00
{{end}}
{{if $isParticipant}}
2019-12-19 07:38:10 +01:00
{{$options := `{updateButtonTitle: "Vai alla gara!"}`}}
{{template "show_header" dict "options" ($options|yaml) "title" (.Data|string) "updatePath" (.Data.ID|update "Response")}}
2019-12-18 13:00:45 +01:00
{{end}}
2019-11-18 17:04:07 +01:00
2019-12-13 12:55:11 +01:00
<h2 class="karmen-relation-header">Informazioni generali</h2>
<dl class="row">
2019-12-18 13:00:45 +01:00
<dt class="col-sm-3">Periodo di attività</dt>
<dd class="col-sm-9">
{{if not (.Data.Contest.Date|zeroTime)}}
La gara si svolgerà il giorno {{.Data.Contest.Date|prettyDate}} dalle ore {{.Data.Contest.StartTime|convertTime}} alle ore {{.Data.Contest.EndTime|convertTime}}
{{else}}
La gara è sempre attiva.
{{end}}
</dd>
2019-12-13 12:55:11 +01:00
{{if $isAdmin}}
2019-12-16 18:05:12 +01:00
<dt class="col-sm-3">Ordine delle domande</dt>
<dd class="col-sm-9">{{.Data.QuestionsOrder}}</dd>
2019-12-18 09:47:37 +01:00
<dt class="col-sm-3">Risposte fornite (IDs)</dt>
{{if .Data.AnswersIDs}}
<dd class="col-sm-9">{{printf "[%v]" .Data.AnswersIDs}}</dd>
{{else}}
<dd class="col-sm-9">nessuna risposta fornita</dd>
{{end}}
<dt class="col-sm-3">Punteggio</dt>
<dd class="col-sm-9">{{.Data.Score}}</dd>
2019-12-13 12:55:11 +01:00
{{if $creatorUser:=.Data.CreatedBy}}
<dt class="col-sm-3">Creato da</dt>
<dd class="col-sm-9">{{$creatorUser.Username}}[{{$creatorUser.Role}}] {{$.Data.CreatedAt|prettyDateTime}} da {{.Data.CreatorIP}}</dd>
{{end}}
{{if $updaterUser:=.Data.UpdatedBy}}
<dt class="col-sm-3">Modificato da</dt>
<dd class="col-sm-9">{{$updaterUser.Username}}[{{$updaterUser.Role}}] {{$.Data.UpdatedAt|prettyDateTime}} da {{.Data.UpdaterIP}}</dd>
{{end}}
{{end}}
</dl>
2019-12-18 13:00:45 +01:00
{{if $isAdmin}}
2019-11-18 17:04:07 +01:00
<div class="row">
<div class="col-md-12">
{{$options := `
2019-12-13 12:55:11 +01:00
title: "Domande"
model: "Question"
icon: "fa fa-question-circle"
2019-11-18 17:04:07 +01:00
`}}
2019-12-13 12:55:11 +01:00
{{$noElements := "La prova del partecipante non contiene alcuna domanda."}}
{{template "relation_list" dict "options" ($options|yaml) "data" .Data.Questions "noElements" $noElements}}
2019-11-18 17:04:07 +01:00
</div>
</div>
2019-12-18 13:00:45 +01:00
{{end}}
2019-11-18 17:04:07 +01:00
</div>
{{ end }}