main
Last change
on this file since feffc2f was feffc2f, checked in by andrejtodorovski <82031894+andrejtodorovski@…>, 23 months ago |
Added some views and functionalities
|
-
Property mode
set to
100644
|
File size:
642 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>0olji
|
---|
15 | <th>Име на сервис</th>
|
---|
16 | </tr>
|
---|
17 | </thead>
|
---|
18 | <tbody>
|
---|
19 | <tr th:each="repair : ${userRepairs}">
|
---|
20 | <td th:text="${repair.getOrderdate}"></td>
|
---|
21 | <td th:text="${repair.getPartname()}"></td>
|
---|
22 | <td th:text="${repair.getVin()}"></td>
|
---|
23 | <td th:text="${repair.getRsname()}"></td>
|
---|
24 | </tr>
|
---|
25 | </tbody>
|
---|
26 | </table>
|
---|
27 | </body>
|
---|
28 | </html> |
---|
Note:
See
TracBrowser
for help on using the repository browser.