[% USE HTML %]
[% USE LxERP %]
[%- IF SELF.import_status == 'tested' %]
[%- LxERP.t8('Import preview') %]
[%- ELSE %]
[%- LxERP.t8('Import result') %]
[%- END %]
[% IF SELF.data.size %]
[%- FOREACH column = SELF.headers.headers %]
| [%- HTML.escape(column) %] |
[%- END %]
[%- LxERP.t8('Notes') %] |
[%- FOREACH row = SELF.data %]
[%- FOREACH method = SELF.headers.methods %]
| [%- HTML.escape(row.object.$method) %] |
[%- END %]
[%- FOREACH error = row.errors %][%- HTML.escape(error) %][% UNLESS loop.last %] [%- END %][%- END %]
|
[%- END %]
[%- END %]