0
0
Fork 1
Spiegel von https://github.com/paviliondev/discourse-custom-wizard.git synchronisiert 2024-09-20 07:41:11 +02:00
discourse-custom-wizard/assets/javascripts/discourse/templates/components/wizard-custom-input.hbs
2017-10-17 21:17:53 +08:00

16 Zeilen
646 B
Handlebars

{{#each inputs as |in|}}
<span 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 'admin.wizard.key')}}
{{/if}}
{{#if valueContent}}
{{combo-box value=in.value content=valueContent nameProperty="label" none=noneValue}}
{{else}}
{{input type="text" value=in.value placeholder=(i18n 'admin.wizard.value')}}
{{/if}}
</span>
{{d-button action='remove' actionParam=in icon='times'}}
{{/each}}
<div>{{d-button action='add' label='admin.wizard.add' icon='plus'}}</div>