main
Last change
on this file since ab952ab was 60de3eb, checked in by andrejtodorovski <82031894+andrejtodorovski@…>, 23 months ago |
Added master template and added filtering parts by car and category
|
-
Property mode
set to
100644
|
File size:
497 bytes
|
Line | |
---|
1 | <div>
|
---|
2 | <h1>Мои критики</h1>
|
---|
3 | <table>
|
---|
4 | <thead>
|
---|
5 | <tr>
|
---|
6 | <th>Оценка</th>
|
---|
7 | <th>Коментар</th>
|
---|
8 | <th>Име на сервис</th>
|
---|
9 | <th>Локација на сервис</th>
|
---|
10 | </tr>
|
---|
11 | </thead>
|
---|
12 | <tbody>
|
---|
13 | <tr th:each="review : ${userReviews}">
|
---|
14 | <td th:text="${review.getRating}"></td>
|
---|
15 | <td th:text="${review.getRcomment()}"></td>
|
---|
16 | <td th:text="${review.getRsname()}"></td>
|
---|
17 | <td th:text="${review.getRslocation()}"></td>
|
---|
18 | </tr>
|
---|
19 | </tbody>
|
---|
20 | </table>
|
---|
21 | </div>
|
---|
Note:
See
TracBrowser
for help on using the repository browser.