0
0
Fork 1
Spiegel von https://github.com/paviliondev/discourse-custom-wizard.git synchronisiert 2024-09-21 00:01:12 +02:00
discourse-custom-wizard/assets/javascripts/discourse/templates/components/wizard-custom-input.hbs
2017-11-30 10:55:15 +08:00

25 Zeilen
895 B
Handlebars

{{#each inputs as |in|}}
<div class='custom-input'>
{{#if keyContent}}
{{combo-box value=in.key content=keyContent nameProperty="label" none=noneKey}}
{{else}}
{{input type="text" value=in.key placeholder=(i18n inputKey)}}
{{/if}}
{{#if valueContent}}
{{combo-box value=in.value
content=valueContent
nameProperty="label"
none=noneValue
isDisabled=(if in.value_custom true false)}}
{{#if optionalCustom}}
{{input type="text" value=in.value_custom placeholder=(i18n inputValue)}}
{{/if}}
{{else}}
{{input type="text" value=in.value placeholder=(i18n inputValue)}}
{{/if}}
{{d-button action='remove' actionParam=in icon='times'}}
</div>
{{/each}}
<div class="add-custom-input">
{{d-button action='add' label='admin.wizard.add' icon='plus'}}
</div>