--- a/templates/results.html Wed Oct 26 21:46:50 2011 +0200
+++ /dev/null Thu Jan 01 00:00:00 1970 +0000
@@ -1,29 +0,0 @@
-<html>
-<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
-<body>
-
-{% if error %}
-<font color=red> {{ error }} </font>
-{% else %}
-{% for entry in entries %}
-
- {% if loop.first %}
- <table>
- <tr><th>Name</th><th>Telefon</th><th>Mail</th></tr>
- {% endif %}
-
- <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>
- {% endif %}
-{% else %}
- Sorry, keine Einträge gefunden.
-{% endfor %}
-{% endif %}
-</body>
-</html>