Files
newznab-tmux/resources/views/themes/admin/console-list.tpl
T
2019-08-09 10:42:35 +02:00

32 lines
777 B
Smarty

<h1>{$title}</h1>
<div class="card card-body">
{if $consolelist}
{$consolelist->onEachSide(5)->links()}
<table style="margin-top:10px;" class="data table table-striped responsive-utilities jambo-table Sortable">
<tr>
<th>id</th>
<th>Title</th>
<th>Platform</th>
<th>Created</th>
</tr>
{foreach from=$consolelist item=console}
<tr class="{cycle values=",alt"}">
<td class="less">{$console->id}</td>
<td><a title="Edit"
href="{{url("/admin/console-edit?id={$console->id}")}}">{$console->title}</a></td>
<td>{$console->platform}</td>
<td>{$console->created_at|date_format}</td>
</tr>
{/foreach}
</table>
<br/>
{$consolelist->onEachSide(5)->links()}
{else}
<p>No games available.</p>
{/if}
</div>