{{i18n 'admin.wizard.id'}}
{{input
name="name"
value=model.id
placeholderKey="admin.wizard.id_placeholder"
disabled=model.existingId}}
{{i18n 'admin.wizard.name'}}
{{input
name="name"
value=model.name
placeholderKey="admin.wizard.name_placeholder"}}
{{i18n 'admin.wizard.background'}}
{{input
name="background"
value=model.background
placeholderKey="admin.wizard.background_placeholder"}}
{{i18n 'admin.wizard.save_submissions'}}
{{input type='checkbox' checked=model.save_submissions}}
{{i18n 'admin.wizard.save_submissions_label'}}
{{i18n 'admin.wizard.multiple_submissions'}}
{{input type='checkbox' checked=model.multiple_submissions}}
{{i18n 'admin.wizard.multiple_submissions_label'}}
{{i18n 'admin.wizard.required'}}
{{input type='checkbox' checked=model.required}}
{{i18n 'admin.wizard.required_label'}}
{{i18n 'admin.wizard.after_signup'}}
{{input type='checkbox' checked=model.after_signup}}
{{i18n 'admin.wizard.after_signup_label'}}
{{i18n 'admin.wizard.after_time'}}
{{input type='checkbox' checked=model.after_time}}
{{i18n 'admin.wizard.after_time_label'}}
{{d-button
action='setNextSessionScheduled'
translatedLabel=nextSessionScheduledLabel
class="btn-after-time"
icon='far-calendar'}}
{{i18n 'admin.wizard.prompt_completion'}}
{{input type='checkbox' checked=model.prompt_completion}}
{{i18n 'admin.wizard.prompt_completion_label'}}
{{i18n 'admin.wizard.min_trust'}}
{{i18n 'admin.wizard.min_trust_label'}}
{{input type='number' value=model.min_trust class='input-small'}}
{{i18n 'admin.wizard.theme_id'}}
{{combo-box
content=model.themes
valueProperty='id'
value=model.theme_id
onChange=(action (mut model.theme_id))
options=(hash
none='admin.wizard.no_theme'
)}}
{{i18n 'admin.wizard.restart_on_revisit'}}
{{input type='checkbox' checked=model.restart_on_revisit}}
{{i18n 'admin.wizard.restart_on_revisit_label'}}
{{i18n 'admin.wizard.group'}}
{{wizard-field-mapper
inputs=model.group
options=(hash
hasOutput=true
enableConnectors=true
userFieldSelection='key,value'
groupSelection=true
textDisabled='output'
)}}
{{wizard-links type="step" current=currentStep items=model.steps}}
{{#if currentStep}}
{{wizard-custom-step step=currentStep wizard=model}}
{{/if}}