blob: 1518ee2af4ead9e303a5636fa9376fd5f2b02056 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
|
{{range .Instances}}
<tr>
<td>
<div class="d-flex flex-column gap-2 justify-content-between">
<b>{{.Address}}</b>
<span>Expires in <code>{{.ExpiresIn}}</code></span>
<small>Instance <code>{{.DeployKey}}</code> of <i>{{.ChallengeName}}</i></small>
</div>
</td>
<td>
<button
hx-post="/instances/{{.DeployKey}}/stop"
hx-target="#instance-action-result"
hx-swap="beforeend"
class="btn btn-danger">
Stop
</button>
</td>
</tr>
{{else}}
<tr>
<td colspan="2">
<i class="text-center text-muted">Your team does not have any instances</i>
</td>
</tr>
{{end}}
|