Ghost/core/client/templates/-import-errors.hbs
Jason Williams 6f595c959a Update syntax in ember templates.
No Issue.
- Outlet names must be quoted.
- {{#each}} helper will no longer implicitly switch context.
  Change usage to {{#each foo in bar}}.
2014-12-06 16:30:57 +00:00

8 lines
142 B
Handlebars

{{#if importErrors}}
<table class="table">
{{#each error in importErrors}}
<tr><td>{{error.message}}</td></tr>
{{/each}}
</table>
{{/if}}