summaryrefslogtreecommitdiffci
path: root/views/partials/personal-page-status.html
blob: 41033a995df67fae08e4202da912585d88bc7390 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
<div id="{{ .StatusId }}" class='z-26 w-full inset-shadow-elevation-6
    {{if eq .Status "OK"}}bg-green-700 text-green-100
    {{else if eq .Status "Failed"}}bg-red-700 text-red-100
    {{else}}bg-paper bg-background-dark text-main-soft{{end}}
    {{if eq .Message ""}}hidden{{end}}
    py-2 px-4 text-center'
    {{- range $_, $val := .DataAttributes }}
    {{ $val }}
    {{- end }}
    >
    {{ .Message }}
</div>