11 lines
340 B
HTML
11 lines
340 B
HTML
|
<div class="system-check-ok">
|
||
|
<img src="/images/icon-large-ok.svg" />
|
||
|
{{ with .Date }}
|
||
|
{{ $latestDate := dateFormat "2006-01-02T15:04:05" .Date}}
|
||
|
<p id="days-since-latest" data-latest-incident-date="{{ $latestDate }}">48+ days since last incident</p>
|
||
|
{{ else }}
|
||
|
<p>No incidents so far, all is good</p>
|
||
|
{{ end }}
|
||
|
</div>
|
||
|
|