blob: b397b8206c2de539a677af07f3165e7b25c3bdbc (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
{strip}
{if $storageHash}
{if $errors}
{formfeedback warning=$errors}
{/if}
<p>
<div class="attachments">
{foreach from=$storageHash item=item key=id}
<a class="btn btn-default" href="{$item.download_url}">{booticon iname="fa-cloud-arrow-down"} {$item.file_name|default:"File `$id`"|escape} <small>({$item.file_size|display_bytes})</small></a> <small>{jspopup notra=1 href="`$item.display_url`&popup=y" title="Details..."}</small>
{/foreach}
</div>
</p>
{/if}
{/strip}
|