Advertisement
Guest User

Untitled

a guest
May 25th, 2019
94
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Java 0.39 KB | None | 0 0
  1. <th:foreach th:each="wijn:${wijnenInMandje}" th:object="${wijn}" >
  2.             <tr>
  3.                 <th th:text="${wijn.getNaamByWijnId(id)(id=${wijn.getKey().id})}"></th>
  4.                 <th></th>
  5.                 <th th:text="${wijn.getKey().jaar}"></th>
  6.                 <th th:text="${wijn.getKey().prijs}"></th>
  7.                 <th th:text="${wijn.getValue()}"></th>
  8.                 <th th:text="${wijn.getKey().prijs}*${wijn.getValue()}"></th>
  9.        
  10.             </tr>
  11.         </th:foreach>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement