47 lines
1.9 KiB
Smarty
47 lines
1.9 KiB
Smarty
|
{{ define "content" }}
|
||
|
<div class="container">
|
||
|
|
||
|
{{$update := .Options.Get "update"}}
|
||
|
|
||
|
{{if $update}}
|
||
|
|
||
|
{{template "breadcrumb" toSlice "Contests" (all "Contest") (.Data|string) (.Data.ID|show "Contest") "Aggiorna" "current"}}
|
||
|
{{else}}
|
||
|
{{template "breadcrumb" toSlice "Contests" (all "Contest") "Aggiungi" "current"}}
|
||
|
{{end}}
|
||
|
|
||
|
{{template "add_update_header" dict "update" $update "addTitle" "Crea nuovo ELEMENTO" "updateTitle" (printf "Aggiorna gara %s" (.Data|string))}}
|
||
|
{{$form := "form_add_update"}}
|
||
|
<form
|
||
|
class="needs-validation"
|
||
|
action="{{if $update}}{{.Data.ID|update "Contest"}}{{else}}{{create "Contest"}}{{end}}"
|
||
|
method="POST"
|
||
|
role="form"
|
||
|
id={{$form}}>
|
||
|
|
||
|
{{$options := ` { name: "Name",id: "contest_name",label: "Nome della gara",placeholder: "Inserire il nome della gara",type: "text",required: "true"} `}}
|
||
|
{{template "input" dict "options" ($options|yaml) "value" (.Data|field "Name") "update" $update}}
|
||
|
|
||
|
<div class="form-row">
|
||
|
<div class="col">
|
||
|
{{$options := ` { name: "Date",id: "contest_date",label: "La gara si svolgerà il giorno",type: "date" } `}}
|
||
|
{{template "input" dict "options" ($options|yaml) "value" (.Data|field "Date"|convertDate) "update" $update}}
|
||
|
</div>
|
||
|
<div class="col">
|
||
|
{{$options := ` { name: "StartTime",id: "contest_start_time",label: "Dalle ore",type: "time" } `}}
|
||
|
{{template "input" dict "options" ($options|yaml) "value" (.Data|field "StartTime"|convertTime) "update" $update}}
|
||
|
</div>
|
||
|
<div class="col">
|
||
|
{{$options := ` { name: "EndTime",id: "contest_end_time",label: "Alle ore",type: "time" } `}}
|
||
|
{{template "input" dict "options" ($options|yaml) "value" (.Data|field "EndTime"|convertTime) "update" $update}}
|
||
|
</div>
|
||
|
</div>
|
||
|
|
||
|
{{$options := ` { cancelTitle: "Annulla", saveTitle: "Salva", model: "Contest" }`}}
|
||
|
{{template "submit_cancel_buttons" dict "options" ($options|yaml) "id" (.Data|field "ID") "update" $update}}
|
||
|
|
||
|
</form>
|
||
|
|
||
|
</div>
|
||
|
{{ end }}
|