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.
 
 
 
 
 
 

37 lines
1.4 KiB

<div class="well well-sm">
<h1>{$page->title}</h1>
<h2>For
<a href="{$smarty.const.WWW_TOP}/details/{$rel.guid}">{$rel.searchname|escape:'htmlall'}</a>
</h2>
<table class="data table table-striped responsive-utilities jambo-table Sortable">
<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="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_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>
</div>