2019-08-07 12:38:50 +02:00
|
|
|
<h2>{{i18n 'admin.wizard.transfer.export.label'}}</h2>
|
|
|
|
|
|
|
|
<ul class="wizard-list-select">
|
|
|
|
{{#each wizards as |w|}}
|
|
|
|
<li>
|
2020-03-30 01:53:28 +02:00
|
|
|
{{input
|
|
|
|
type="checkbox"
|
|
|
|
id=(dasherize w.id)
|
|
|
|
change=(action 'checkChanged')}}
|
|
|
|
|
2020-04-13 14:17:22 +02:00
|
|
|
{{#link-to "adminWizardsWizardShow" (dasherize w.id)}}
|
2019-08-07 12:38:50 +02:00
|
|
|
{{w.name}}
|
|
|
|
{{/link-to}}
|
|
|
|
</li>
|
|
|
|
{{/each}}
|
|
|
|
</ul>
|
|
|
|
|
|
|
|
{{d-button id="export-button"
|
|
|
|
class="btn btn-primary side"
|
|
|
|
label="admin.wizard.transfer.export.label"
|
|
|
|
action=(action "export")}}
|
|
|
|
|
|
|
|
{{#if exportMessage}}
|
|
|
|
<div class="export-message">
|
|
|
|
{{exportMessage}}
|
|
|
|
</div>
|
|
|
|
{{/if}}
|