source: src/main/resources/templates/services.html@ 9dcbf44

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

Added full functionality for changing delivery status,
added bootstrap for some pages

  • Property mode set to 100644
File size: 648 bytes
Line 
1<div>
2 <main>
3 <h1 class="mt-3 mb-3">Информации за сервиси</h1>
4 <table class="table table-bordered">
5 <thead class="thead-dark">
6 <tr>
7 <th scope="col">Име на сервис</th>
8 <th scope="col">Број на критики</th>
9 <th scope="col">Просечна оценка</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.