Ghost/ghost/admin/templates/-import-errors.hbs
Hannah Wolfe 05afe8afb2 Improve importer error messaging
closes #3274

- Ensure that validation errors are always handled by moving them into the
  importer
- Ensure that db errors are handled consistently across sqlite and mysql
- Change the errors to be output in a table, with a short failure notification
- Add tests for 003 importing bad files
2014-07-29 12:02:18 +01:00

7 lines
126 B
Handlebars

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