Vulcan/packages/telescope-search/lib/client/templates/search_logs.html

31 lines
734 B
HTML
Raw Normal View History

2014-06-23 11:05:06 +09:00
<template name="searchLogs">
2015-03-23 10:32:56 +09:00
<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>
2013-11-22 14:20:47 +09:00
</tr>
2015-03-23 10:32:56 +09:00
{{/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>
2013-11-22 14:20:47 +09:00
</div>
</template>