summaryrefslogtreecommitdiff
path: root/pkg/webui/html/states.html
blob: 8d3d803119fa0b3f4359b065f593b8fa1c22c0f5 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
{{ define "main" }}
<h1>States</h1>
<table class="striped">
  <thead>
    <tr>
      <th scope="col">Path</th>
      <th scope="col">Created</th>
      <th scope="col">Updated</th>
      <th scope="col">Locked</th>
    </tr>
  </thead>
  <tbody>
    {{ range .States }}
    <tr>
      <th scope="row">{{ .Path }}</th>
      <td>{{ .Created }}</td>
      <td>{{ .Updated }}</td>
      <td>{{ .Lock }}</td>
    </tr>
    {{ end }}
  </tbody>
</table>
{{ end }}