Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- <h1>Iteration Expression</h1>
- <table class="table">
- <thead>
- <tr>
- <th scope="col">#</th>
- <th scope="col">ID</th>
- <th scope="col">Name</th>
- </tr>
- </thead>
- <tbody>
- <tr th:each="p : ${people}">
- <th scope="row" th:text="${p.id}">1</th>
- <td th:text="${p.id}">1</td>
- <td th:text="${p.name}">Otto</td>
- </tr>
- </tbody>
- </table>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement