Files
newznab-tmux/public/themes/admin/game-list.tpl
T
2017-10-09 13:39:04 +02:00

24 lines
638 B
Smarty

<div class="well well-sm">
<h1>{$page->title}</h1>
{if $gamelist}
{$pager}
<table style="margin-top:10px;" class="data table table-striped responsive-utilities jambo-table Sortable">
<tr>
<th>ID</th>
<th>Title</th>
<th>Genre</th>
<th>Created</th>
</tr>
{foreach from=$gamelist item=game}
<tr class="{cycle values=",alt"}">
<td class="less">{$game.id}</td>
<td><a title="Edit" href="{$smarty.const.WWW_TOP}/game-edit.php?id={$game.id}">{$game.title}</a></td>
<td>{$game.genretitle}</td>
<td>{$game.created_at|date_format}</td>
</tr>
{/foreach}
</table>
{else}
<p>No games available.</p>
{/if}