Vulcan/packages/telescope-search/lib/client/views/search_logs.html
2014-11-25 17:16:00 +09:00

32 lines
851 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}}">{{_ "load_more"}}</a>
</div>
</div>
</template>