2018-07-03 11:14:53 +08:00
|
|
|
<div class="admin-title">
|
2017-11-15 08:13:50 +08:00
|
|
|
{{period-chooser period=period}}
|
2017-11-29 01:54:27 +08:00
|
|
|
{{combo-box content=searchTypeOptions value=searchType class='search-logs-filter'}}
|
2018-07-03 11:14:53 +08:00
|
|
|
</div>
|
2017-11-15 08:13:50 +08:00
|
|
|
|
|
|
|
{{#conditional-loading-spinner condition=loading}}
|
|
|
|
{{#if model.length}}
|
|
|
|
|
2018-07-03 11:14:53 +08:00
|
|
|
<table class='search-logs-list grid'>
|
|
|
|
<thead>
|
|
|
|
<th class="col heading term">{{i18n 'admin.logs.search_logs.term'}}</th>
|
|
|
|
<th class="col heading">{{i18n 'admin.logs.search_logs.searches'}}</th>
|
2018-12-18 21:43:46 +08:00
|
|
|
<th class="col heading">{{i18n 'admin.logs.search_logs.click_through_rate'}}</th>
|
2018-07-03 11:14:53 +08:00
|
|
|
</thead>
|
|
|
|
<tbody>
|
2017-11-15 08:13:50 +08:00
|
|
|
{{#each model as |item|}}
|
2018-07-03 11:14:53 +08:00
|
|
|
<tr class="admin-list-item">
|
|
|
|
<td class="col term">
|
2019-04-02 11:51:11 +08:00
|
|
|
{{#link-to 'adminSearchLogs.term' (query-params term=item.term period=period) class="test"}}
|
2019-03-29 10:39:44 +08:00
|
|
|
{{item.term}}
|
|
|
|
{{/link-to}}
|
2018-07-03 11:14:53 +08:00
|
|
|
</td>
|
|
|
|
<td class="col"><div class="label">{{i18n 'admin.logs.search_logs.searches'}}</div>{{item.searches}}</td>
|
2018-12-18 21:43:46 +08:00
|
|
|
<td class="col"><div class="label">{{i18n 'admin.logs.search_logs.click_through_rate'}}</div>{{item.ctr}}%</td>
|
2018-07-03 11:14:53 +08:00
|
|
|
</tr>
|
2017-11-15 08:13:50 +08:00
|
|
|
{{/each}}
|
2018-07-03 11:14:53 +08:00
|
|
|
</tbody>
|
|
|
|
</table>
|
2017-11-15 08:13:50 +08:00
|
|
|
|
|
|
|
{{else}}
|
|
|
|
{{i18n 'search.no_results'}}
|
|
|
|
{{/if}}
|
|
|
|
{{/conditional-loading-spinner}}
|