You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 

22 lines
596 B

<h1>{$page->title}</h1>
{if $consolelist}
{$pager}
<table style="margin-top:10px;" class="data Sortable highlight">
<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="{$smarty.const.WWW_TOP}/console-edit.php?id={$console.id}">{$console.title}</a></td>
<td>{$console.platform}</td>
<td>{$console.createddate|date_format}</td>
</tr>
{/foreach}
</table>
{else}
<p>No games available.</p>
{/if}