Ghost/core/client/templates/components/gh-role-selector.hbs

6 lines
154 B
Handlebars
Raw Normal View History

<select {{bind-attr id=selectId name=selectName}}>
{{#each role in roles}}
<option {{bind-attr value=role.id}}>{{role.name}}</option>
{{/each}}
</select>