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.
 
 
 
 
 
 

34 lines
786 B

<h1>Browse Groups</h1>
{$site->adbrowse}
{if $results|@count > 0}
{$pager}
<table style="width:100%;" class="data highlight table table-condensed table-responsive Sortable" id="browsetable">
<tr>
<th>Name</th>
<th>Description</th>
<th>Updated</th>
</tr>
{foreach $results as $result}
{if $pagertotalitems > 0}
<tr class="{cycle values=",alt"}">
<td>
<a title="Browse releases from {$result.name|replace:"alt.binaries":"a.b"}" href="{$smarty.const.WWW_TOP}/browse?g={$result.name}">{$result.name|replace:"alt.binaries":"a.b"}</a>
</td>
<td>
{$result.description}
</td>
<td class="less">{$result.last_updated|timeago} ago</td>
</tr>
{/if}
{/foreach}
</table>
{$pager}
{/if}