| 1234567891011121314151617181920212223 |
- <!DOCTYPE HTML>
- <%#include "fortune.h" %>
- <html>
- <head>
- <title>Fortunes</title>
- </head>
- <body>
- <table>
- <tr>
- <th>id</th>
- <th>message</th>
- </tr>
- <% tfetch(QList<Fortune>, fortuneList); %>
- <% for (QListIterator<Fortune> it(fortuneList); it.hasNext(); ) {
- const Fortune &i = it.next(); %>
- <tr>
- <td><%= i.id() %></td>
- <td><%= i.message() %></td>
- </tr>
- <% } %>
- </table>
- </body>
- </html>
|