spearhead-statuskit/site/layouts/partials/systems.html

32 lines
1.2 KiB
HTML

{{ $okAlert := index .content.Site.Data.severity.alerts "ok"}}
{{ $okDesc := index .content.Site.Data.severity.descriptions "ok" }}
{{ with .content.Site.Params.systems }}
<div class="systems">
{{ range . }}
{{ $name := . }}
<div class="system-operational">
<div class="card">
{{- $name -}}
{{ if $.incidents }}
{{ $.content.Scratch.Set "max" 0 }}
{{ range $.incidents }}
{{ if in .Params.affectedsystems $name }}
{{ $level := index .Site.Data.severity.levels_reverse .Params.severity }}
{{ if gt $level ($.content.Scratch.Get "max") }}
{{ $.content.Scratch.Set "max" $level }}
{{ end }}
{{ end }}
{{ end }}
{{ $severity := index $.content.Site.Data.severity.levels (string ($.content.Scratch.Get "max")) }}
{{ $alert := index $.content.Site.Data.severity.alerts $severity }}
{{ $desc := index $.content.Site.Data.severity.descriptions $severity }}
{{ partial "status-badge" (dict "alert" $alert "description" $desc) }}
{{ else }}
{{ partial "status-badge" (dict "alert" $okAlert "description" $okDesc) }}
{{ end }}
</div>
</div>
{{ end }}
</div>
{{ end }}