source: src/main/resources/templates/repairsForUser.html@ 60de3eb

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

Added master template and added filtering parts by car and category

  • Property mode set to 100644
File size: 510 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="repair : ${userRepairs}">
14 <td th:text="${repair.getOrderdate}"></td>
15 <td th:text="${repair.getPartname()}"></td>
16 <td th:text="${repair.getVin()}"></td>
17 <td th:text="${repair.getRsname()}"></td>
18 </tr>
19 </tbody>
20</table>
21</div>
Note: See TracBrowser for help on using the repository browser.