mirror of
https://github.com/NNTmux/newznab-tmux.git
synced 2026-09-03 11:49:03 +00:00
24 lines
638 B
Smarty
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}
|