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.
 
 
 
 
 
 

43 lines
1.4 KiB

<h1>{$page->title}</h1>
<h2>For <a href="{$smarty.const.WWW_TOP}/details/{$rel.guid}">{$rel.searchname|escape:'htmlall'}</a></h2>
{$pager}
<table style="width:100%;margin-bottom:10px; margin-top:5px;" class="data Sortable highlight">
<tr>
<th>#</th>
<th>filename</th>
<th style="text-align:left;">Type</th>
<th style="text-align:right;">completion</th>
<th style="text-align:right;">size</th>
</tr>
{foreach $files as $i=>$file name="iteration"}
<tr class="{cycle values=",alt"}">
<td width="20">{$smarty.foreach.iteration.index+1}</td>
<td>{$file.title|escape:'htmlall'}</td>
{assign var="icon" value='themes/shared/img/fileicons/'|cat:$file.ext|cat:".png"}
{if $file.ext == "" || !is_file("$icon")}
{assign var="icon" value='file'}
{else}
{assign var="icon" value=$file.ext}
{/if}
{if $file.partstotal != 0}
{assign var="completion" value=($file.partsactual/$file.partstotal*100)|number_format:1}
{else}
{assign var="completion" value=0|number_format:1}
{/if}
<td><img title=".{$file.ext}" alt="{$file.ext}" src="{$smarty.const.WWW_TOP}/themes/shared/img/fileicons/{$icon}.png" /></td>
<td class="less right">{if $completion < 100}<span class="warning">{$completion}%</span>{else}{$completion}%{/if}</td>
<td class="less right">{if $file.size < 100000}{$file.size|fsize_format:"KB"}{else}{$file.size|fsize_format:"MB"}{/if}</td>
</tr>
{/foreach}
</table>
<pager style="padding-bottom:10px;"> {$pager} </pager>