You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 

18 lines
488 B

<h1>{$page->title}</h1>
<h2>For {$release.searchname|escape:'htmlall'}</h2>
<table style="width:100%;" class="data Sortable">
<tr>
<th>#</th>
<th>filename</th>
<th>size</th>
<th>parts</th>
</tr>
{foreach from=$files item=file}
<tr>
<td style="width:20px">{counter}</td>
<td title="{$file.title|escape:'htmlall'}">{$file.title|escape:'htmlall'}</td>
<td class="less">{$file.size|fsize_format:"MB"}</td>
<td>{count($file.segments)}</td>
</tr>
{/foreach}
</table>