/samples/scalate-example/src/main/webapp/tableJsp.jsp

http://github.com/scalate/scalate · JavaServer Pages · 27 lines · 23 code · 3 blank · 1 comment · 0 complexity · 95be5d7aca53277df85112916c91d0c0 MD5 · raw file

  1. <%
  2. // TODO lots of Java code here to make the people collection :)
  3. %>
  4. <h1>Table Example</h1>
  5. <div class="main">
  6. <table>
  7. <tr>
  8. <th>Name</th>
  9. <th>Location</th>
  10. </tr>
  11. <form:forEachMapEntry items="${people}" var="person">
  12. <tr>
  13. <td>${person.key}</td>
  14. <td>${person.value}</td>
  15. </tr>
  16. <tr>
  17. </form:forEachMapEntry>
  18. </table>
  19. <div class="description">
  20. <p>
  21. This is lots and lots of text.
  22. <b>Scalate</b> really is rather awesome!
  23. </p>
  24. </div>