Skip to content

Commit

Permalink
Cachemeldungen als HTML-Tabelle
Browse files Browse the repository at this point in the history
  • Loading branch information
flopp authored and following committed Aug 12, 2012
1 parent 66869d7 commit e8c5f72
Show file tree
Hide file tree
Showing 2 changed files with 13 additions and 8 deletions.
4 changes: 3 additions & 1 deletion htdocs/adminreports.php
Original file line number Diff line number Diff line change
Expand Up @@ -113,11 +113,13 @@
$rs = sql("SELECT `cr`.`id`,
IF(`cr`.`status`=1,'(*) ', '') AS `new`,
`c`.`name`,
`u2`.`username` AS `ownernick`,
`u`.`username`,
`cr`.`lastmodified`
`cr`.`lastmodified`
FROM `cache_reports` `cr`
INNER JOIN `caches` `c` ON `c`.`cache_id` = `cr`.`cacheid`
INNER JOIN `user` `u` ON `u`.`user_id` = `cr`.`userid`
INNER JOIN `user` AS `u2` ON `u2`.`user_id`=`c`.`user_id`
WHERE `cr`.`status` < 3
AND (`cr`.`adminid` IS NULL OR `cr`.`adminid`=&1)
ORDER BY `cr`.`status` DESC, `cr`.`lastmodified` ASC",
Expand Down
17 changes: 10 additions & 7 deletions htdocs/templates2/ocstyle/adminreports.tpl
Original file line number Diff line number Diff line change
Expand Up @@ -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}
Expand Down

0 comments on commit e8c5f72

Please sign in to comment.