mirror of
https://github.com/discourse/discourse-data-explorer.git
synced 2025-03-09 13:24:53 +00:00
31 lines
707 B
Handlebars
31 lines
707 B
Handlebars
<section class="user-content">
|
|
<table class="group-reports">
|
|
<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>
|
|
{{#link-to "group.reports.show" group.name query.id}}{{query.name}}{{/link-to}}
|
|
</td>
|
|
<td>{{query.description}}</td>
|
|
<td>
|
|
{{#if query.last_run_at}}
|
|
{{bound-date query.last_run_at}}
|
|
{{/if}}
|
|
</td>
|
|
</tr>
|
|
{{/each}}
|
|
</tbody>
|
|
</table>
|
|
</section>
|