diff options
author | Brian Picciano <mediocregopher@gmail.com> | 2022-05-17 14:39:42 -0600 |
---|---|---|
committer | Brian Picciano <mediocregopher@gmail.com> | 2022-05-17 14:39:42 -0600 |
commit | 7b7bdcf57a5fa1e02041e3ef563c55f31d908f67 (patch) | |
tree | 7e1c19be77f606abb99e2ad82c84545b4891c6f3 /srv/src/api/tpl/admin | |
parent | 9a67ef921100d16294b30b7d111206789c8e1feb (diff) |
Initial implementation of admin assets page
Diffstat (limited to 'srv/src/api/tpl/admin')
-rw-r--r-- | srv/src/api/tpl/admin/assets.html | 18 |
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" . }} |