diff options
Diffstat (limited to 'srv/src/api/tpl/admin-assets.html')
-rw-r--r-- | srv/src/api/tpl/admin-assets.html | 26 |
1 files changed, 25 insertions, 1 deletions
diff --git a/srv/src/api/tpl/admin-assets.html b/srv/src/api/tpl/admin-assets.html index d871a3e..036002e 100644 --- a/srv/src/api/tpl/admin-assets.html +++ b/srv/src/api/tpl/admin-assets.html @@ -1,8 +1,32 @@ {{ define "body" }} +<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"> + {{ .CSRFFormInput }} + <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> + +<h2>Existing Assets</h2> + <table> - {{ range .IDs }} + {{ range .Payload.IDs }} <tr> <td><a href="{{ AssetURL . }}" target="_blank">{{ . }}</a></td> <td> |