index.erb 385 B

1234567891011121314151617181920212223
  1. <!DOCTYPE HTML>
  2. <%#include "fortune.h" %>
  3. <html>
  4. <head>
  5. <title>Fortunes</title>
  6. </head>
  7. <body>
  8. <table>
  9. <tr>
  10. <th>id</th>
  11. <th>message</th>
  12. </tr>
  13. <% tfetch(QList<Fortune>, fortuneList); %>
  14. <% for (QListIterator<Fortune> it(fortuneList); it.hasNext(); ) {
  15. const Fortune &i = it.next(); %>
  16. <tr>
  17. <td><%= i.id() %></td>
  18. <td><%= i.message() %></td>
  19. </tr>
  20. <% } %>
  21. </table>
  22. </body>
  23. </html>