/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
- <%
- // TODO lots of Java code here to make the people collection :)
- %>
- <h1>Table Example</h1>
- <div class="main">
- <table>
- <tr>
- <th>Name</th>
- <th>Location</th>
- </tr>
- <form:forEachMapEntry items="${people}" var="person">
- <tr>
- <td>${person.key}</td>
- <td>${person.value}</td>
- </tr>
- <tr>
- </form:forEachMapEntry>
- </table>
- <div class="description">
- <p>
- This is lots and lots of text.
- <b>Scalate</b> really is rather awesome!
- </p>
- </div>