123456789101112131415161718 |
- <!DOCTYPE html>
- <html>
- <head>
- <title>Fortunes</title>
- </head>
- <body>
- <table>
- <tr>
- <th>id</th>
- <th>message</th>
- </tr>
- <tr tal:repeat="fortune fortunes">
- <td>${fortune.id}</td>
- <td>${fortune.message}</td>
- </tr>
- </table>
- </body>
- </html>
|