summaryrefslogtreecommitdiff
path: root/pkg/webui/html/states.html
diff options
context:
space:
mode:
Diffstat (limited to 'pkg/webui/html/states.html')
-rw-r--r--pkg/webui/html/states.html23
1 files changed, 23 insertions, 0 deletions
diff --git a/pkg/webui/html/states.html b/pkg/webui/html/states.html
new file mode 100644
index 0000000..8d3d803
--- /dev/null
+++ b/pkg/webui/html/states.html
@@ -0,0 +1,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 }}