mirror of
https://github.com/vale981/Vulcan
synced 2025-03-10 04:26:41 -04:00
25 lines
566 B
HTML
25 lines
566 B
HTML
![]() |
<template name="logs">
|
||
|
<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}}
|
||
|
<tr>
|
||
|
<td>{{keyword}}</td>
|
||
|
<td>{{getTimestamp}}</td>
|
||
|
</tr>
|
||
|
{{/each}}
|
||
|
</tbody>
|
||
|
</table>
|
||
|
<div class="grid more-button">
|
||
|
<a class="more-link" href="{{loadMoreUrl}}">{{i18n "Load more"}}</a>
|
||
|
</div>
|
||
|
</div>
|
||
|
</template>
|