mirror of
https://github.com/TryGhost/Ghost.git
synced 2024-12-19 16:42:17 +03:00
51c31951e8
No Issue. - Outlet names must be quoted. - {{#each}} helper will no longer implicitly switch context. Change usage to {{#each foo in bar}}.
6 lines
154 B
Handlebars
6 lines
154 B
Handlebars
<select {{bind-attr id=selectId name=selectName}}>
|
|
{{#each role in roles}}
|
|
<option {{bind-attr value=role.id}}>{{role.name}}</option>
|
|
{{/each}}
|
|
</select>
|