fortune.html 319 B

1234567891011121314151617
  1. <!DOCTYPE html>
  2. <html>
  3. <head><title>Fortunes</title></head>
  4. <body>
  5. <table>
  6. <tr>
  7. <th>id</th>
  8. <th>message</th>
  9. </tr>
  10. {% for fortune in fortunes %}
  11. <tr>
  12. <td>{{ fortune[0] }}</td>
  13. <td>{{ fortune[1]|e }}</td>
  14. </tr>
  15. {% endfor %}</table>
  16. </body>
  17. </html>