mirror of
https://github.com/TryGhost/Ghost.git
synced 2024-12-17 05:21:36 +03:00
6f595c959a
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>
|