{{ $okAlert := index .content.Site.Data.severity.alerts "ok"}} {{ $okDesc := index .content.Site.Data.severity.descriptions "ok" }} {{ with .content.Site.Params.systems }}
{{ range . }} {{ $name := . }}
{{- $name -}} {{ if $.incidents }} {{ range $.incidents }} {{ if in .Params.affectedsystems $name }} {{ $alert := index .Site.Data.severity.alerts .Params.severity }} {{ $desc := index .Site.Data.severity.descriptions .Params.severity }} {{ partial "status-badge" (dict "alert" $alert "description" $desc) }} {{ else }} {{ partial "status-badge" (dict "alert" $okAlert "description" $okDesc) }} {{ end }} {{ end }} {{ else }} {{ partial "status-badge" (dict "alert" $okAlert "description" $okDesc) }} {{ end }}
{{ end }}
{{ end }}