{{ define "content" }}
{{$admin := (.Claims|isAdmin)}} {{$options := ""}} {{if $admin}} {{$options = ` title: "Gare" buttonTitle: "Crea nuova gara" `}} {{else}} {{$options = ` title: "Gare a cui sei iscritto" `}} {{end}} {{if $admin}} {{template "read_all_header" dict "options" ($options | yaml) "lengthData" (len .Data) "modelPath" (create "Contest")}} {{template "search_input" .Data}} {{if not .}} {{template "display_no_elements"}} {{else}}
{{range $element := .Data}} {{$element|string}}
{{$options := `noElements: "nessuna data"`}} {{template "small" dict "options" ($options | yaml) "data" ($element.Date|prettyDate)}}
{{end}} {{end}}
{{else}} {{template "read_all_header" dict "options" ($options | yaml) "lengthData" (len .Data) "modelPath" (create "Contest")}} {{template "search_input"}} {{if not .}} {{template "display_no_elements"}} {{else}}
{{range $element := .Data}} {{$element|string}}
{{$options := `noElements: "nessuna data"`}} {{template "small" dict "options" ($options | yaml) "data" ($element.Date|prettyDate)}}
{{end}} {{end}}
{{end}}
{{ end }}