12345678910111213141516171819202122 |
- <!DOCTYPE html>
- <html>
- <head>
- <title>Fortunes</title>
- </head>
- <body>
- <table>
- <tr>
- <th>id</th>
- <th>message</th>
- </tr>
- {for cookie in cookies:
- <tr>
- <td>{ cookie.id }</td>
- <td>{ cookie.message }</td>
- </tr>
- }
- </table>
- </body>
- </html>
|