Spiegel von
https://github.com/paviliondev/discourse-custom-wizard.git
synchronisiert 2024-11-10 12:22:54 +01:00
ceef3f4bc9
* Re structure builder logic to allow for step conditionality Concerns - Performance. Look at whether the additional build in the steps controller can be reduced - Does not work if applied to the last step. - Certain conditions will not work with the first step(?) - How should this be scoped to known functionality? * Add indexes and conditions to steps and fields * Complete and add spec * Complete backend * Complete step conditionality and field indexing * Fix failing spec * Update coverage * Apply rubocop * Apply prettier * Apply prettier to wizard js * Fix schema issues created in merge * Remove setting label for force_final * Improve client wizard cache naming * Improve steps controller and spec conditionality * Improve final step attribute naming * Fix failing spec * Linting * Add one more final step test * Linting * Fix eslint issues * Apply prettier * Linting, syntax, merge and copy cleanups * Update wizard-admin.scss * Fix template linting * Rubocop fixes
34 Zeilen
796 B
Handlebars
34 Zeilen
796 B
Handlebars
<div class="admin-wizard-controls">
|
|
<h3>{{i18n "admin.wizard.log.nav_label"}}</h3>
|
|
|
|
{{d-button
|
|
label="refresh"
|
|
icon="refresh"
|
|
action="refresh"
|
|
class="refresh"}}
|
|
</div>
|
|
|
|
{{#load-more selector=".log-list tr" action=(action "loadMore") class="wizard-logs"}}
|
|
{{#if noResults}}
|
|
<p>{{i18n "search.no_results"}}</p>
|
|
{{else}}
|
|
<table class="table grid">
|
|
<thead>
|
|
<tr>
|
|
<th>Message</th>
|
|
<th class="date">Date</th>
|
|
</tr>
|
|
</thead>
|
|
<tbody>
|
|
{{#each logs as |log|}}
|
|
<tr>
|
|
<td>{{log.message}}</td>
|
|
<td class="date">{{bound-date log.date}}</td>
|
|
</tr>
|
|
{{/each}}
|
|
</tbody>
|
|
</table>
|
|
{{/if}}
|
|
|
|
{{conditional-loading-spinner condition=refreshing}}
|
|
{{/load-more}}
|