Export
{{#each model as |w|}}
-
{{input type="checkbox" id=(dasherize w.id) change=(action 'checkChanged')}}
{{#link-to "adminWizard" (dasherize w.id)}}{{w.name}}{{/link-to}}
{{/each}}
{{d-button id="export-button" class="btn btn-primary side" label="admin.wizard.transfer.export"
action=(action "export")}}
Import
{{input id='file_url' type="file" change=(action "setFilePath")}}
{{d-button id="import-button" class="btn btn-primary side" label="admin.wizard.transfer.import"
action=(action "import")}}
{{#if this.noneSelected}}
{{this.noneSelected}}
{{/if}}
{{#if this.noFile}}
{{this.noFile}}
{{/if}}
{{#if this.fileError}}
{{this.fileError}}
{{/if}}
{{#if this.error}}
{{this.error}}
{{/if}}
{{#if this.success_ids}}
{{#each this.success_ids as |id|}}
Wizard: {{id}} saved successfully
{{/each}}
{{/if}}
{{#if this.failure_ids}}
{{#each this.failure_ids as |id|}}
Wizard: {{id}} could not be saved
{{/each}}
{{/if}}