source: src/main/resources/templates/services.html@ 6832924

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

Moved products page and added services page

  • Property mode set to 100644
File size: 500 bytes
Line 
1<div>
2 <main>
3 <h1>Информации за сервиси</h1>
4 <table>
5 <thead>
6 <tr>
7 <th>Name</th>
8 <th>Number of reviews</th>
9 <th>Average rating</th>
10 </tr>
11 </thead>
12 <tbody>
13 <tr th:each="service : ${services}">
14 <td th:text="${service.getRsname()}"></td>
15 <td th:text="${service.getReviewcount()}"></td>
16 <td th:text="${service.getReviewaverage()}"></td>
17 </tr>
18 </tbody>
19 </table>
20 </main>
21</div>
Note: See TracBrowser for help on using the repository browser.