2020-10-20 07:40:23 +02:00
|
|
|
{{#if showInputs}}
|
|
|
|
<td>
|
2021-09-03 10:46:32 +02:00
|
|
|
{{wizard-pro-selector
|
2020-10-20 07:40:23 +02:00
|
|
|
value=field.klass
|
|
|
|
content=klassContent
|
|
|
|
none="admin.wizard.custom_field.klass.select"
|
|
|
|
onChange=(action (mut field.klass))}}
|
|
|
|
</td>
|
|
|
|
<td>
|
2021-09-03 10:46:32 +02:00
|
|
|
{{wizard-pro-selector
|
2020-10-20 07:40:23 +02:00
|
|
|
value=field.type
|
|
|
|
content=typeContent
|
|
|
|
none="admin.wizard.custom_field.type.select"
|
|
|
|
onChange=(action (mut field.type))}}
|
|
|
|
</td>
|
2021-06-08 13:39:49 +02:00
|
|
|
<td class="input">
|
|
|
|
{{input
|
|
|
|
value=field.name
|
|
|
|
placeholder=(i18n "admin.wizard.custom_field.name.select")}}
|
|
|
|
</td>
|
2020-11-10 01:56:11 +01:00
|
|
|
<td class="multi-select">
|
2020-10-20 07:40:23 +02:00
|
|
|
{{multi-select
|
|
|
|
value=field.serializers
|
|
|
|
content=serializerContent
|
|
|
|
none="admin.wizard.custom_field.serializers.select"
|
|
|
|
onChange=(action (mut field.serializers))}}
|
|
|
|
</td>
|
2020-11-10 01:56:11 +01:00
|
|
|
<td class="actions">
|
|
|
|
{{#if loading}}
|
|
|
|
{{loading-spinner size="small"}}
|
|
|
|
{{else}}
|
|
|
|
{{#if saveIcon}}
|
|
|
|
{{d-icon saveIcon}}
|
|
|
|
{{/if}}
|
|
|
|
{{/if}}
|
|
|
|
{{d-button
|
|
|
|
action="destroy"
|
|
|
|
icon="trash-alt"
|
|
|
|
class="destroy"
|
|
|
|
disabled=destroyDisabled}}
|
|
|
|
{{d-button
|
|
|
|
icon="save"
|
|
|
|
action="save"
|
|
|
|
disabled=saveDisabled
|
|
|
|
class="save"}}
|
|
|
|
{{d-button
|
|
|
|
action="close"
|
|
|
|
icon="times"
|
|
|
|
disabled=closeDisabled}}
|
2020-10-20 07:40:23 +02:00
|
|
|
</td>
|
|
|
|
{{else}}
|
|
|
|
<td><label>{{field.klass}}</label></td>
|
|
|
|
<td><label>{{field.type}}</label></td>
|
2020-11-10 01:56:11 +01:00
|
|
|
<td class="input"><label>{{field.name}}</label></td>
|
2021-06-08 13:39:49 +02:00
|
|
|
<td class="multi-select">
|
|
|
|
{{#if isExternal}}
|
|
|
|
—
|
|
|
|
{{else}}
|
|
|
|
{{#each field.serializers as |serializer|}}
|
|
|
|
<label>{{serializer}}</label>
|
|
|
|
{{/each}}
|
|
|
|
{{/if}}
|
2020-10-20 07:40:23 +02:00
|
|
|
</td>
|
2021-06-08 13:39:49 +02:00
|
|
|
{{#if isExternal}}
|
|
|
|
<td class="external">
|
|
|
|
<label title={{i18n "admin.wizard.custom_field.external.title"}}>
|
|
|
|
{{i18n "admin.wizard.custom_field.external.label"}}
|
|
|
|
</label>
|
|
|
|
</td>
|
|
|
|
{{else}}
|
|
|
|
<td class="actions">
|
|
|
|
{{d-button action="edit" icon="pencil-alt"}}
|
|
|
|
</td>
|
|
|
|
{{/if}}
|
2021-04-20 19:58:19 +02:00
|
|
|
{{/if}}
|