Ghost/ghost/admin/app/templates/-import-errors.hbs
Austin Burdine c5535e0a1b update Ember to 1.12.1/ember-data to 1.0.0-beta.18
No issue
- fixed "{{#each}}" helper in templates to use block syntax
- fixed deprecated ember.controller getter/setter function to use new syntax
- removed unnecessary pass-protect route view
2015-06-02 22:26:16 -06:00

8 lines
144 B
Handlebars

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