mirror of
https://github.com/TryGhost/Ghost.git
synced 2024-12-28 21:33:24 +03:00
15 lines
390 B
Handlebars
15 lines
390 B
Handlebars
<select {{action "change" on="change"}}>
|
|
{{#if prompt}}
|
|
<option disabled selected={{is-not selection}}>
|
|
{{prompt}}
|
|
</option>
|
|
{{/if}}
|
|
|
|
{{#each content as |item|}}
|
|
<option value="{{get item optionValuePath}}"
|
|
selected={{is-equal item selection}}>
|
|
{{get item optionLabelPath}}
|
|
</option>
|
|
{{/each}}
|
|
</select>
|