Ein [% END %] zu viel
authorMoritz Bunkus <m.bunkus@linet-services.de>
Wed, 2 Mar 2011 08:41:58 +0000 (09:41 +0100)
committerMoritz Bunkus <m.bunkus@linet-services.de>
Thu, 16 Jun 2011 06:44:30 +0000 (08:44 +0200)
templates/webpages/csv_import/_errors.html

index 3fda491..e96ac50 100644 (file)
@@ -1,21 +1,20 @@
 [% USE LxERP %]
 
- <h3>[%- LxERP.t8('Errors') %]</h3>
+<h3>[%- LxERP.t8('Errors') %]</h3>
 
- <p>[%- LxERP.t8('Found #1 errors.', SELF.errors.size) %]</p>
+<p>[%- LxERP.t8('Found #1 errors.', SELF.errors.size) %]</p>
 
- <table>
-  <tr class="listheading">
-   <th>[%- LxERP.t8('Line and column') %]</th>
-   <th>[%- LxERP.t8('Block') %]</th>
-   <th>[%- LxERP.t8('Error') %]</th>
+<table>
+ <tr class="listheading">
+  <th>[%- LxERP.t8('Line and column') %]</th>
+  <th>[%- LxERP.t8('Block') %]</th>
+  <th>[%- LxERP.t8('Error') %]</th>
+ </tr>
+ [% FOREACH err = SELF.errors %]
+  <tr>
+   <td>[% err.4 %]:[% err.3 %]</td>
+   <td>[% err.0 %]</td>
+   <td>[% err.2 %]</td>
   </tr>
-  [% FOREACH err = SELF.errors %]
-   <tr>
-    <td>[% err.4 %]:[% err.3 %]</td>
-    <td>[% err.0 %]</td>
-    <td>[% err.2 %]</td>
-   </tr>
-  [% END %]
- </table>
-[% END %]
+ [% END %]
+</table>