Tags auch wieder schliessen.
authorHeiko Schlittermann (IT Trainingshaus) <hs@schlittermann.de>
Wed, 26 Oct 2011 09:57:17 +0200
changeset 8 636f54747018
parent 7 47446e75ceea
child 16 152fc2237f2d
Tags auch wieder schliessen.
templates/results.html
--- a/templates/results.html	Wed Oct 26 00:56:32 2011 +0200
+++ b/templates/results.html	Wed Oct 26 09:57:17 2011 +0200
@@ -8,20 +8,21 @@
 {% for entry in entries %}
 
     {% if loop.first %}
-    <table>
-	<tr><th>Name<th>Telefon<th>Mail</tr>
+	    <table>
+	    <tr><th>Name</th><th>Telefon</th><th>Mail</th></tr>
     {% endif %}
 
-    <tr><td>{{entry.name}}
-	<td>{{entry.tel}}
-	<td>{{entry.mail}}
+    <tr><td>{{entry.name}}</td>
+        <td>{{entry.tel}}</td>
+	<td>{{entry.mail}}</td>
+    </tr>
 
     {% if loop.last %}
-    </table>
-    <font color=red>{{ left ? left ~ ' weitere Einträge' : '' }}</font>
+	    </table>
+     	    <font color=red>{{ left ? left ~ ' weitere Einträge' : '' }}</font>
     {% endif %}
 {% else %}
-Sorry, keine Einträge gefunden.
+	Sorry, keine Einträge gefunden.
 {% endfor %}
 {% endif %}
 </body>