浏览代码

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

Patrick Falls 12 年之前
父节点
当前提交
5c49b7bcca
共有 1 个文件被更改,包括 18 次插入0 次删除
  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>
+