2014-06-23 11:05:06 +09:00
|
|
|
<template name="searchLogs">
|
2013-11-22 14:20:47 +09:00
|
|
|
<div class="grid-small grid-block dialog admin">
|
|
|
|
<h2>Search Logs</h2>
|
|
|
|
<table>
|
|
|
|
<thead>
|
|
|
|
<tr>
|
|
|
|
<th>Keyword</th>
|
|
|
|
<th>Timestamp</th>
|
|
|
|
</tr>
|
|
|
|
</thead>
|
|
|
|
<tbody>
|
|
|
|
{{#each this}}
|
2013-11-22 14:46:42 +09:00
|
|
|
{{#if isNewDate}}
|
|
|
|
<tr class='search-date-header'>
|
|
|
|
<th colspan="2">
|
|
|
|
<span class="search-date">{{getDate}}</span>
|
|
|
|
<span class="search-count">{{searchCount}}</span>
|
|
|
|
</th>
|
|
|
|
</tr>
|
|
|
|
{{/if}}
|
2013-11-22 14:20:47 +09:00
|
|
|
<tr>
|
|
|
|
<td>{{keyword}}</td>
|
2013-11-22 14:46:42 +09:00
|
|
|
<td>{{getTime}}</td>
|
2013-11-22 14:20:47 +09:00
|
|
|
</tr>
|
|
|
|
{{/each}}
|
|
|
|
</tbody>
|
|
|
|
</table>
|
|
|
|
<div class="grid more-button">
|
|
|
|
<a class="more-link" href="{{loadMoreUrl}}">{{i18n "Load more"}}</a>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</template>
|