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
1.1 KiB

{* $Id$ *}
{title help="SearchStats"}{tr}Search statistics{/tr}{/title}
<div class="t_navbar">
{button href="?clear=1" class="btn btn-primary" _text="{tr}Clear Stats{/tr}"}
</div>
{include file='find.tpl'}
<div class="table-responsive">
<table class="table">
<tr>
<!-- term -->
<th><a href="tiki-search_stats.php?offset={$offset}&amp;sort_mode={if $sort_mode eq 'term_desc'}term_asc{else}term_desc{/if}">{tr}Word{/tr}</a></th>
<!-- searched -->
<th>
<a href="tiki-search_stats.php?offset={$offset}&amp;sort_mode={if $sort_mode eq 'hits_desc'}hits_asc{else}hits_desc{/if}">{tr}Searched{/tr}</a></th>
<!-- How can we increase the number of items displayed on a page? -->
</tr>
{section name=user loop=$channels}
<tr>
<td class="text">{$channels[user].term}</td>
<td class="integer">{$channels[user].hits}</td>
</tr>
{/section}
</table>
</div>
{pagination_links cant=$cant_pages step=$prefs.maxRecords offset=$offset}{/pagination_links}