summaryrefslogtreecommitdiff
path: root/srv/src/api/tpl/admin
diff options
context:
space:
mode:
Diffstat (limited to 'srv/src/api/tpl/admin')
-rw-r--r--srv/src/api/tpl/admin/assets.html18
1 files changed, 18 insertions, 0 deletions
diff --git a/srv/src/api/tpl/admin/assets.html b/srv/src/api/tpl/admin/assets.html
new file mode 100644
index 0000000..d871a3e
--- /dev/null
+++ b/srv/src/api/tpl/admin/assets.html
@@ -0,0 +1,18 @@
+{{ define "body" }}
+
+<table>
+
+ {{ range .IDs }}
+ <tr>
+ <td><a href="{{ AssetURL . }}" target="_blank">{{ . }}</a></td>
+ <td>
+ Delete (TODO)
+ </td>
+ </tr>
+ {{ end }}
+
+</table>
+
+{{ end }}
+
+{{ template "base.html" . }}