lockserver/frontend/lock.html
Finn 511897164e
All checks were successful
/ build-container (push) Successful in 8m9s
fix baseurl in links
2024-11-23 01:50:46 -08:00

23 lines
848 B
HTML

{{ template "header.html" . }}
<header>{{ if eq .Data.lock.Name "" }}Lock #{{ .Data.lock.ID }}{{ else }}{{ .Data.lock.Name }}{{ end }}</header>
[ <a href="{{ $.BaseURL }}/locks/{{ .Data.lock.ID }}/edit">rename</a> ]<br />
<br />
<table border="1">
<tr>
<td>Slot</td>
<td>Name</td>
<td>Code</td>
<td>Enabled?</td>
<td>Actions</td>
</tr>
{{ range $_, $code := .Data.codes }}
<tr class="code-{{ if $code.Enabled }}enabled{{ else }}disabled{{ end }}">
<td>{{ $code.Slot }}</td>
<td>{{ $code.Name }}</td>
<td>{{ $code.Code }}</td>
<td>{{ if $code.Enabled }}enabled{{ else }}disabled{{ end }}</td>
<td>[ <a href="{{ $.BaseURL }}/locks/{{ $.Data.lock.ID }}/codes/{{ $code.Slot }}">edit</a> ]</td>
</tr>
{{ end }}
</table>
{{ template "footer.html" }}