0
Fork 0
mirror of https://github.com/TryGhost/Ghost.git synced 2025-01-06 22:40:14 -05:00
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

7 lines
142 B
Handlebars

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