0
0
Fork 1
Spiegel von https://github.com/paviliondev/discourse-custom-wizard.git synchronisiert 2024-09-19 23:31:11 +02:00
discourse-custom-wizard/assets/javascripts/discourse/templates/admin-wizards-logs-show.hbs

49 Zeilen
1,3 KiB
Handlebars

{{#if logs}}
<div class="wizard-header large">
<label>
{{i18n "admin.wizard.log.title" name=wizard.name}}
</label>
<div class="controls">
{{d-button
label="refresh"
icon="sync"
2022-03-29 21:15:09 +02:00
action=(action "refresh")
2023-07-10 08:55:54 +02:00
class="refresh"
}}
</div>
</div>
<div class="wizard-table">
{{#load-more selector=".wizard-table tr" action=(action "loadMore")}}
{{#if noResults}}
<p>{{i18n "search.no_results"}}</p>
{{else}}
<table>
<thead>
<tr>
<th class="date">{{i18n "admin.wizard.log.date"}}</th>
<th>{{i18n "admin.wizard.log.action"}}</th>
<th>{{i18n "admin.wizard.log.user"}}</th>
<th>{{i18n "admin.wizard.log.message"}}</th>
</tr>
</thead>
<tbody>
{{#each logs as |log|}}
<tr>
{{#each-in log as |field value|}}
2023-07-10 08:55:54 +02:00
<td class="small">{{wizard-table-field
field=field
value=value
}}</td>
{{/each-in}}
</tr>
{{/each}}
</tbody>
</table>
{{/if}}
{{conditional-loading-spinner condition=refreshing}}
{{/load-more}}
</div>
2023-07-10 08:55:54 +02:00
{{/if}}