zdravko/web/templates/pages/settings_checks.tmpl

114 lines
3.9 KiB
Cheetah
Raw Normal View History

2024-02-29 11:15:15 +00:00
{{ define "settings" }}
{{ $description := "Checks are constantly determining if targets are healthy or not." }}
{{ $length := len .Checks }}
{{ if eq $length 0 }}
2024-02-29 11:15:15 +00:00
<div class="py-8 px-4 mx-auto max-w-screen-xl text-center lg:py-16">
<h1
class="mb-4 text-2xl font-extrabold tracking-tight leading-none text-gray-900 md:text-3xl lg:text-4xl"
>
There are no checks yet.
2024-02-29 11:15:15 +00:00
</h1>
<p
class="mb-8 text-l font-normal text-gray-700 lg:text-l sm:px-8 lg:px-40"
2024-02-29 11:15:15 +00:00
>
{{ $description }}
</p>
<div class="flex flex-col gap-4 sm:flex-row sm:justify-center">
2024-02-29 11:15:15 +00:00
<a
href="/settings/checks/create"
2024-02-29 11:15:15 +00:00
class="inline-flex justify-center items-center py-3 px-5 text-base font-medium text-center text-white rounded-lg bg-blue-700 hover:bg-blue-800 focus:ring-4 focus:ring-blue-300"
>
Create First Check
2024-02-29 11:15:15 +00:00
<svg class="feather ml-1 h-5 w-5 overflow-visible">
<use href="/static/icons/feather-sprite.svg#plus" />
</svg>
2024-02-23 11:18:02 +00:00
</a>
2024-02-29 11:15:15 +00:00
</div>
</div>
2024-02-29 11:15:15 +00:00
{{ else }}
<section>
<table>
<caption>
List of Checks
2024-02-29 14:12:20 +00:00
<div class="mt-1 gap-4 grid grid-cols-1 md:grid-cols-[1fr,20%]">
<p>
{{ $description }}
</p>
2024-02-29 11:15:15 +00:00
<a
href="/settings/checks/create"
2024-02-29 14:12:20 +00:00
class="h-min inline-flex justify-center items-center py-2 px-4 text-sm font-medium text-center text-white rounded-lg bg-blue-700 hover:bg-blue-800 focus:ring-4 focus:ring-blue-300"
2024-02-29 11:15:15 +00:00
>
Create New
2024-02-29 11:15:15 +00:00
<svg class="feather h-5 w-5 overflow-visible">
<use href="/static/icons/feather-sprite.svg#plus" />
</svg>
</a>
</div>
</caption>
<thead class="text-xs text-gray-700 uppercase bg-gray-50">
2024-02-29 11:15:15 +00:00
<tr>
<th scope="col">Name</th>
<th scope="col">Targets</th>
2024-02-29 11:15:15 +00:00
<th scope="col">Worker Groups</th>
<th scope="col">State</th>
2024-02-29 11:15:15 +00:00
<th scope="col">Schedule</th>
<th scope="col">Action</th>
</tr>
</thead>
2024-03-03 14:28:25 +00:00
<tbody>
{{ range $checks := .Checks }}
<tr>
<th scope="row">
{{ .Name }}
2024-02-29 11:15:15 +00:00
</th>
<td>
<span
class="px-2 inline-flex text-xs leading-5 font-semibold rounded-full bg-gray-100 text-gray-800"
>3</span
>
</td>
<td>
{{ range .WorkerGroups }}
<span
class="px-2 inline-flex text-xs leading-5 font-semibold rounded-full bg-blue-100 text-blue-800"
>
{{ . }}
</span>
{{ end }}
</td>
<td>
{{ if eq .State "ACTIVE" }}
<span
class="px-2 inline-flex text-xs leading-5 font-semibold rounded-full bg-green-100 text-green-800"
>
ACTIVE
</span>
{{ else if eq .State "PAUSED" }}
<span
class="px-2 inline-flex text-xs leading-5 font-semibold rounded-full bg-yellow-100 text-yellow-800"
>
PAUSED
</span>
{{ else }}
<span
class="px-2 inline-flex text-xs leading-5 font-semibold rounded-full bg-gray-100 text-gray-800"
>
UNKNOWN
</span>
2024-03-03 14:28:25 +00:00
{{ end }}
</td>
<td>
{{ .Schedule }}
</td>
<td>
<a href="/settings/checks/{{ .Id }}" class="link">Details</a>
</td>
</tr>
2024-03-03 14:28:25 +00:00
{{ end }}
</tbody>
2024-02-29 11:15:15 +00:00
</table>
</section>
{{ end }}
{{ end }}