Files
us-api/views/junk-drawer/upload-result.hbs
2024-10-01 16:57:19 -06:00

15 lines
426 B
Handlebars

<div>
<h1>Upload Result</h1>
<p>File uploaded successfully.</p>
<p>{{description}}</p>
<p>Right-click copy: <a href='/junk-drawer/{{slug}}'>{{slug}}</a></p>
{{#if items}}
<p>Files:</p>
<ul>
{{#each items}}
<li><a target="_blank" href='/junk-drawer/{{../slug}}/{{filename}}'>{{filename}}</a></li>
{{/each}}
</ul>
{{/if}}
<p><a href='/junk-drawer'>Upload another file</a></p>
</div>