2015-06-30 18:12:12 -04:00
|
|
|
<div class="result-info">
|
2019-09-11 10:09:41 -04:00
|
|
|
{{d-button action=(action "downloadResultJson") icon="download" label="explorer.download_json" group=group}}
|
|
|
|
{{d-button action=(action "downloadResultCsv") icon="download" label="explorer.download_csv" group=group}}
|
2015-06-30 18:12:12 -04:00
|
|
|
</div>
|
2015-06-30 18:56:09 -04:00
|
|
|
|
2018-09-12 09:28:54 -04:00
|
|
|
<div class="result-about">
|
2018-09-16 12:28:16 -04:00
|
|
|
{{resultCount}}
|
2018-09-12 09:28:54 -04:00
|
|
|
{{duration}}
|
|
|
|
</div>
|
|
|
|
|
|
|
|
<br>
|
|
|
|
|
2015-06-30 18:56:09 -04:00
|
|
|
{{~#if hasExplain}}
|
2018-09-12 09:28:54 -04:00
|
|
|
<pre class="result-explain"><code>
|
2015-06-30 18:56:09 -04:00
|
|
|
{{~content.explain}}
|
|
|
|
</code></pre>
|
|
|
|
{{~/if}}
|
|
|
|
|
2018-09-12 09:28:54 -04:00
|
|
|
<br>
|
|
|
|
|
2015-06-30 18:12:12 -04:00
|
|
|
<table>
|
|
|
|
<thead>
|
|
|
|
<tr class="headers">
|
2015-08-25 23:48:19 -04:00
|
|
|
{{#each columnDispNames as |col|}}
|
|
|
|
<th>{{col}}</th>
|
2015-06-30 18:12:12 -04:00
|
|
|
{{/each}}
|
|
|
|
</tr>
|
|
|
|
</thead>
|
|
|
|
<tbody>
|
2016-11-09 12:49:25 -05:00
|
|
|
{{#each rows as |row|}}
|
|
|
|
{{query-row-content
|
|
|
|
row=row
|
|
|
|
fallbackTemplate=fallbackTemplate
|
|
|
|
columnTemplates=columnTemplates}}
|
|
|
|
{{/each}}
|
2015-06-30 18:12:12 -04:00
|
|
|
</tbody>
|
|
|
|
</table>
|