Add options.attributes
This commit is contained in:
parent
0e9ec59c7c
commit
cd19270aa3
3 changed files with 8 additions and 4 deletions
|
@ -5,7 +5,7 @@
|
|||
name="{{.options.name}}"
|
||||
class="{{if .options.inputClass}}{{.options.inputClass}}{{else}}form-control{{end}}"
|
||||
id="{{.options.id}}"
|
||||
placeholder="{{.options.placeholder}}" {{if .update}}value="{{.value}}"{{end}} {{if .options.required}}required{{end}}>
|
||||
placeholder="{{.options.placeholder}}" {{if .update}}value="{{.value}}"{{end}} {{if .options.otherAttrs}}{{.options.otherAttrs}}{{end}} {{if .options.required}}required{{end}}>
|
||||
{{if .options.help}}<small class="form-text text-muted">{{.options.help}}</small>{{end}}
|
||||
</div>
|
||||
{{end}}
|
||||
|
|
|
@ -16,7 +16,7 @@
|
|||
{{end}}
|
||||
|
||||
{{if $isSubscriber}}
|
||||
{{template "add_update_header" dict "update" $update "addTitle" "Iscrivi scuola" "updateTitle" (printf "Aggiorna scuola %s" (.Data|string))}}
|
||||
{{template "add_update_header" dict "update" $update "addTitle" "Iscrivi la scuola" "updateTitle" (printf "Aggiorna scuola %s" (.Data|string))}}
|
||||
{{else}}
|
||||
{{template "add_update_header" dict "update" $update "addTitle" "Crea nuova scuola" "updateTitle" (printf "Aggiorna scuola %s" (.Data|string))}}
|
||||
{{end}}
|
||||
|
@ -28,7 +28,7 @@
|
|||
role="form"
|
||||
id={{$form}}>
|
||||
|
||||
{{$options := ` { name: "Name",id: "school_name",label: "Denominazione dell'istituto",placeholder: "Inserire la denominazione",type: "text",required: "true"} `}}
|
||||
{{$options := ` { name: "Name",id: "school_name",label: "Denominazione dell'istituto",placeholder: "Inserire la denominazione",type: "text",required: "true"} `}}
|
||||
{{template "input" dict "options" ($options|yaml) "value" (.Data|field "Name") "update" $update}}
|
||||
|
||||
{{$options := `
|
||||
|
@ -38,6 +38,7 @@
|
|||
placeholder: "Inserire il codice meccanografico"
|
||||
type: "text"
|
||||
inputClass: "form-control uppercase"
|
||||
otherAttrs: "maxlength=10"
|
||||
required: "true"
|
||||
`}}
|
||||
{{template "input" dict "options" ($options|yaml) "value" (.Data|field "Code") "update" $update}}
|
||||
|
|
|
@ -2,6 +2,9 @@
|
|||
|
||||
<div class="container">
|
||||
{{if .Claims|isSubscriber}}
|
||||
{{if .FlashMessages}}
|
||||
<p>Si è verificato un errore. Clicca <a href="/logout">qui</a> per uscire da questa sessione.</p>
|
||||
{{else}}
|
||||
<p>
|
||||
Grazie per aver iscritto la scuola <strong>{{.Data.Name}}</strong>
|
||||
alle Olimpiadi di Economia e Finanza.
|
||||
|
@ -15,7 +18,7 @@
|
|||
utilizzare le credenziali ricevute per iscrivere gli studenti alla
|
||||
competizione.
|
||||
</p>
|
||||
|
||||
{{end}}
|
||||
{{else}}
|
||||
{{template "breadcrumb" toSlice "Scuole" (all "School") (.Data|string|trim) "current"}}
|
||||
{{template "show_header" dict "title" (.Data|string|trim) "updatePath" (.Data.ID|update "School") "deletePath" (.Data.ID|delete "School")}}
|
||||
|
|
Loading…
Reference in a new issue