2021-07-02 11:35:50 -04:00
|
|
|
<section class="user-content">
|
|
|
|
<table class="group-reports">
|
2019-09-11 10:09:41 -04:00
|
|
|
<thead>
|
|
|
|
<th>
|
|
|
|
{{i18n "explorer.report_name"}}
|
|
|
|
</th>
|
|
|
|
<th>
|
|
|
|
{{i18n "explorer.query_description"}}
|
|
|
|
</th>
|
|
|
|
<th>
|
|
|
|
{{i18n "explorer.query_time"}}
|
|
|
|
</th>
|
|
|
|
</thead>
|
|
|
|
<tbody>
|
|
|
|
{{#each queries as |query|}}
|
|
|
|
<tr>
|
|
|
|
<td>
|
2022-06-17 09:01:34 -04:00
|
|
|
{{#link-to "group.reports.show" group.name query.id}}
|
|
|
|
{{query.name}}
|
|
|
|
{{/link-to}}
|
2019-09-11 10:09:41 -04:00
|
|
|
</td>
|
|
|
|
<td>{{query.description}}</td>
|
2020-06-05 12:56:53 -04:00
|
|
|
<td>
|
|
|
|
{{#if query.last_run_at}}
|
|
|
|
{{bound-date query.last_run_at}}
|
|
|
|
{{/if}}
|
|
|
|
</td>
|
2019-09-11 10:09:41 -04:00
|
|
|
</tr>
|
|
|
|
{{/each}}
|
|
|
|
</tbody>
|
|
|
|
</table>
|
|
|
|
</section>
|