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.
 
 
 
 
 
 

40 lines
1.4 KiB

<h2>{$page->title} </h2>
<h4>For <a href="{$smarty.const.WWW_TOP}/details/{$rel.guid}">{$rel.searchname|escape:'htmlall'}</a></h4>
<br/>
<table class="data Sortable highlight table">
<tr>
<th>#</th>
<th>filename</th>
<th></th>
<th style="text-align:center;">completion</th>
<th style="text-align:center;">size</th>
</tr>
{foreach $files as $i=>$file name="iteration"}
<tr class="{cycle values=",alt"}">
<td width="30">{$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 width="30"><img title=".{$file.ext}" alt="{$file.ext}" src="{$smarty.const.WWW_THEMES}/shared/img/fileicons/{$icon}.png" /></td>
<td class="less right"><div style="text-align: center;">{if $completion < 100}<span class="label label-important">{$completion}%</span>{else}<span class="label label-success">{$completion}%</span>{/if}</div></td>
<td width="80" class="less right">{if $file.size < 100000}{$file.size|fsize_format:"KB"}{else}{$file.size|fsize_format:"MB"}{/if}</td>
</tr>
{/foreach}
</table>