mirror of
https://github.com/TryGhost/Ghost.git
synced 2025-01-13 22:41:32 -05:00
6f595c959a
No Issue. - Outlet names must be quoted. - {{#each}} helper will no longer implicitly switch context. Change usage to {{#each foo in bar}}.
5 lines
154 B
Handlebars
5 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>
|