mirror of
https://github.com/NNTmux/newznab-tmux.git
synced 2026-08-31 18:28:54 +00:00
32 lines
777 B
Smarty
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>
|