Skip to content

Commit

Permalink
Add fortunes.html
Browse files Browse the repository at this point in the history
  • Loading branch information
methane committed May 13, 2013
1 parent 543c7f2 commit 7d9ee00
Showing 1 changed file with 18 additions and 0 deletions.
18 changes: 18 additions & 0 deletions flask/templates/fortunes.html
Original file line number Diff line number Diff line change
@@ -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>

0 comments on commit 7d9ee00

Please sign in to comment.