Ghost/ghost/admin/app/templates/components/gh-role-selector.hbs
Matt Enlow 3b5c7f634b Ember 1.11.1
- remove `bind-attr` all over the place
2015-04-05 21:13:30 -06:00

6 lines
142 B
Handlebars

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