Vulcan/packages/telescope-search/lib/client/views/search_logs.html
2014-08-21 15:30:05 +09:00

32 lines
854 B
HTML

<template name="searchLogs">
<div class="grid-small grid-module dialog admin">
<h2>Search Logs</h2>
<table>
<thead>
<tr>
<th>Keyword</th>
<th>Timestamp</th>
</tr>
</thead>
<tbody>
{{#each this}}
{{#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}}
<tr>
<td>{{keyword}}</td>
<td>{{getTime}}</td>
</tr>
{{/each}}
</tbody>
</table>
<div class="grid more-button">
<a class="more-link" href="{{loadMoreUrl}}">{{i18n "Load more"}}</a>
</div>
</div>
</template>