Spiegel von
https://github.com/paviliondev/discourse-custom-wizard.git
synchronisiert 2024-11-10 12:22:54 +01:00
45 Zeilen
Kein EOL
987 B
Handlebars
45 Zeilen
Kein EOL
987 B
Handlebars
<div class="key input-block">
|
|
{{wizard-custom-input-chooser
|
|
inputType='key'
|
|
userFields=userFields
|
|
wizardFields=wizardFields
|
|
value=pair.key
|
|
activeType=pair.key_type
|
|
customPlaceholder=keyPlaceholder
|
|
options=options}}
|
|
</div>
|
|
|
|
{{#if hasConnector}}
|
|
<div class="connector">
|
|
{{#if options.enableConnectors}}
|
|
{{combo-box
|
|
value=pair.connector
|
|
content=connectors}}
|
|
{{/if}}
|
|
|
|
{{#if connectorKey}}
|
|
<span class="key-connector">
|
|
{{i18n connectorKey}}
|
|
</span>
|
|
{{/if}}
|
|
</div>
|
|
{{/if}}
|
|
|
|
<div class="value input-block">
|
|
{{wizard-custom-input-chooser
|
|
inputType='value'
|
|
userFields=userFields
|
|
wizardFields=wizardFields
|
|
value=pair.value
|
|
activeType=pair.value_type
|
|
customPlaceholder=valuePlaceholder
|
|
options=options}}
|
|
</div>
|
|
|
|
{{#if showJoin}}
|
|
<div class="join-pair">&</div>
|
|
{{/if}}
|
|
|
|
{{#if showRemove}}
|
|
<a {{action removePair pair}} class="remove-pair">{{d-icon 'minus'}}</a>
|
|
{{/if}} |