diff options
Diffstat (limited to 'src/http/tpl/post-assets-manage.html')
-rw-r--r-- | src/http/tpl/post-assets-manage.html | 57 |
1 files changed, 57 insertions, 0 deletions
diff --git a/src/http/tpl/post-assets-manage.html b/src/http/tpl/post-assets-manage.html new file mode 100644 index 0000000..f21717a --- /dev/null +++ b/src/http/tpl/post-assets-manage.html @@ -0,0 +1,57 @@ +{{ define "body" }} + +<p> + <a href="{{ BlogURL "admin" }}">Back to Admin</a> +</p> + +<h1>Assets</h1> + +<h2>Upload Asset</h2> + +<p> + If the given ID is the same as an existing asset's ID, then that asset will be + overwritten. +</p> + +<form action="{{ BlogURL "assets/" }}" method="POST" enctype="multipart/form-data"> + <div class="row"> + <div class="four columns"> + <input type="text" placeholder="Unique ID" name="id" /> + </div> + <div class="four columns"> + <input type="file" name="file" /><br/> + </div> + <div class="four columns"> + <input type="submit" value="Upload" /> + </div> + </div> +</form> + +{{ if gt (len .Payload.IDs) 0 }} + +<h2>Existing Assets</h2> + +<table> + + {{ range .Payload.IDs }} + <tr> + <td><a href="{{ AssetURL . }}">{{ . }}</a></td> + <td> + <form + action="{{ AssetURL . }}?method=delete" + method="POST" + style="margin-bottom: 0;" + > + <input type="submit" value="Delete" /> + </form> + </td> + </tr> + {{ end }} + +</table> + +{{ end }} + +{{ end }} + +{{ template "base.html" . }} |