index.erb 922 B

1234567891011121314151617181920212223242526272829303132333435
  1. <!DOCTYPE HTML>
  2. <%#include "world.h" %>
  3. <html>
  4. <head>
  5. <meta http-equiv="content-type" content="text/html;charset=UTF-8" />
  6. <title><%= controller()->name() + ": " + controller()->activeAction() %></title>
  7. </head>
  8. <body>
  9. <h1>Listing World</h1>
  10. <%== linkTo("New entry", urla("entry")) %><br />
  11. <br />
  12. <table border="1" cellpadding="5" style="border: 1px #d0d0d0 solid; border-collapse: collapse;">
  13. <tr>
  14. <th>ID</th>
  15. <th>RandomNumber</th>
  16. </tr>
  17. <% tfetch(QList<World>, worldList); %>
  18. <% for (QListIterator<World> it(worldList); it.hasNext(); ) {
  19. const World &i = it.next(); %>
  20. <tr>
  21. <td><%= i.id() %></td>
  22. <td><%= i.randomNumber() %></td>
  23. <td>
  24. <%== linkTo("Show", urla("show", i.id())) %>
  25. <%== linkTo("Edit", urla("edit", i.id())) %>
  26. <%== linkTo("Remove", urla("remove", i.id()), Tf::Post, "confirm('Are you sure?')") %>
  27. </td>
  28. </tr>
  29. <% } %>
  30. </table>
  31. </body>
  32. </html>