Cachemeldungen als HTML-Tabelle

This commit is contained in:
flopp
2012-08-13 01:54:26 +02:00
committed by following
parent 66869d74ce
commit e8c5f72a59
2 changed files with 13 additions and 8 deletions
+10 -7
View File
@@ -26,13 +26,16 @@
{/if}
{if $list == true}
<ul>
{foreach from=$reportedcaches item=rc}
<li><a href="adminreports.php?id={$rc.id}">{$rc.new|escape}{$rc.name|escape} reported by {$rc.username|escape} ({$rc.lastmodified|date_format:$opt.format.datelong})</a></li>
{foreachelse}
<li>{t}No reported caches{/t}</li>
{/foreach}
</ul>
<table>
<tr><th>{t}ID{/t}</th><th>{t}Name{/t}</th><th>{t}Owner{/t}</th><th>{t}Reporter{/t}</th><th>{t}Date{/t}</th></tr>
{foreach from=$reportedcaches item=rc}
<td><a href="adminreports.php?id={$rc.id}">{$rc.id}</td><td><a href="adminreports.php?id={$rc.id}">{$rc.new|escape}{$rc.name|escape}</a></td><td>{$rc.ownernick|escape}</td><td>{$rc.username|escape}</td><td>{$rc.lastmodified|date_format:$opt.format.datelong}</td></tr>
{foreachelse}
<tr><td colspan=5>{t}No reported caches{/t}</td></tr>
{/foreach}
</table>
{if $reportedcaches != NULL}
<p style="line-height: 1.6em;">{t}(*) New reports{/t}</p>
{/if}