diff options
Diffstat (limited to 'src/main/webapp/pages/history.jsp')
-rw-r--r-- | src/main/webapp/pages/history.jsp | 12 |
1 files changed, 11 insertions, 1 deletions
diff --git a/src/main/webapp/pages/history.jsp b/src/main/webapp/pages/history.jsp index 7e36faf..34bf05c 100644 --- a/src/main/webapp/pages/history.jsp +++ b/src/main/webapp/pages/history.jsp @@ -21,12 +21,22 @@ %> <table> +<tr> + <th>Ime + </th> + <th>Slika + </th> + <th>Datun + </th> + <th>Rezultat + </th> +</tr> <c:forEach items="${history}" var="item"> <tr bgcolor="${item.result eq 1 ? 'LawnGreen': 'IndianRed'}"> <td><c:out value="${item.pokemon.name}"/></td> <td><img style="height: 50px" src="data:image/*;base64, ${item.pokemon.base64Image}" /></td> <td><c:out value="${item.time}"/></td> - <td><c:out value="${item.result eq 1 ? 'Victory': 'Defeat'}"/></td> + <td><c:out value="${item.result eq 1 ? 'Pobeda': 'Poraz'}"/></td> </tr> </c:forEach> </table> |