source: src/main/resources/templates/reviewsForUser.html@ feffc2f

main
Last change on this file since feffc2f was feffc2f, checked in by andrejtodorovski <82031894+andrejtodorovski@…>, 18 months ago

Added some views and functionalities

  • Property mode set to 100644
File size: 622 bytes
Line 
1<!DOCTYPE html>
2<html lang="en">
3<head>
4 <meta charset="UTF-8">
5 <title>Мои критики</title>
6</head>
7<body>
8<h1>Мои критики</h1>
9<table>
10 <thead>
11 <tr>
12 <th>Оценка</th>
13 <th>Коментар</th>
14 <th>Име на сервис</th>
15 <th>Локација на сервис</th>
16 </tr>
17 </thead>
18 <tbody>
19 <tr th:each="review : ${userReviews}">
20 <td th:text="${review.getRating}"></td>
21 <td th:text="${review.getRcomment()}"></td>
22 <td th:text="${review.getRsname()}"></td>
23 <td th:text="${review.getRslocation()}"></td>
24 </tr>
25 </tbody>
26</table>
27</body>
28</html>
Note: See TracBrowser for help on using the repository browser.