Kunden-/Lieferantenstammdatenimport: zumindest das Testen funktioniert
[kivitendo-erp.git] / templates / webpages / csv_import / _errors.html
1 [% USE LxERP %]
2
3  <h3>[%- LxERP.t8('Errors') %]</h3>
4
5  <p>[%- LxERP.t8('Found #1 errors.', SELF.errors.size) %]</p>
6
7  <table>
8   <tr class="listheading">
9    <th>[%- LxERP.t8('Line and column') %]</th>
10    <th>[%- LxERP.t8('Block') %]</th>
11    <th>[%- LxERP.t8('Error') %]</th>
12   </tr>
13   [% FOREACH err = SELF.errors %]
14    <tr>
15     <td>[% err.4 %]:[% err.3 %]</td>
16     <td>[% err.0 %]</td>
17     <td>[% err.2 %]</td>
18    </tr>
19   [% END %]
20  </table>
21 [% END %]