{{i18n 'admin.wizard.id'}}
{{input name="id" value=step.id placeholderKey="admin.wizard.id_placeholder" disabled=disableId}}
{{i18n 'admin.wizard.key'}}
{{input name="key" value=step.key placeholderKey="admin.wizard.key_placeholder"}}
{{i18n 'admin.wizard.step.title'}}
{{input name="title" value=step.title placeholderKey="admin.wizard.custom_text_placeholder"}}
{{i18n 'admin.wizard.step.banner'}}
{{input name="banner" value=step.banner placeholderKey="admin.wizard.step.banner_placeholder"}}
{{i18n 'admin.wizard.step.description'}}
{{d-editor
value=step.raw_description
placeholder="admin.wizard.custom_text_placeholder"}}
{{i18n 'admin.wizard.step.required_data.label'}}
{{wizard-field-mapper
inputs=step.required_data
userFields=userFields
wizardFields=wizardFields
keyPlaceholder="admin.wizard.submission_key"
options=(hash
enableConnectors=true
wizardFieldSelection='value'
userFieldSelection='value'
)}}
{{#if step.required_data}}
{{i18n 'admin.wizard.step.required_data.not_permitted_message'}}
{{input value=step.required_data_message}}
{{/if}}
{{i18n 'admin.wizard.step.permitted_params.label'}}
{{wizard-field-mapper
inputs=step.permitted_params
userFields=userFields
wizardFields=wizardFields
keyPlaceholder='admin.wizard.param_key'
valuePlaceholder='admin.wizard.submission_key'
connectorKey='admin.wizard.step.permitted_params.connector'}}
{{wizard-links type="field" current=currentField items=step.fields}}
{{#if currentField}}
{{wizard-custom-field
field=currentField
types=wizard.fieldTypes
removeField="removeField"
userFields=wizard.userFields
wizardFields=wizardFields}}
{{/if}}
{{wizard-links type="action" current=currentAction items=step.actions}}
{{#if currentAction}}
{{wizard-custom-action
action=currentAction
wizard=wizard
removeAction="removeAction"
wizardFields=wizardFields
userFields=wizard.userFields}}
{{/if}}