Browse Source

Merge branch 'python-update' of https://github.com/methane/FrameworkBenchmarks into methane-python-update

Patrick Falls 12 years ago
parent
commit
5c49b7bcca
1 changed files with 18 additions and 0 deletions
  1. 18 0
      flask/templates/fortunes.html

+ 18 - 0
flask/templates/fortunes.html

@@ -0,0 +1,18 @@
+<!DOCTYPE html>
+<html><head></head>
+<body>
+<table>
+<tr>
+<th>id</th>
+<th>message</th>
+</tr>
+{% for fortune in fortunes %}
+<tr>
+<td>{{ fortune.id }}</td>
+<td>{{ fortune.message }}</td>
+</tr>
+{% endfor %}
+</table>
+</body>
+</html>
+