source: src/main/resources/templates/myDeliveries.html@ 1bd8d1e

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

Added views and functionalities for deliveryman, warehouseman and admin

  • Property mode set to 100644
File size: 646 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="d : ${deliveries}">
14 <td th:text="${d.getStatus}"></td>
15 <td th:text="${d.getAddress()}"></td>
16 <td th:text="${d.getOrder().getOrderid()}"></td>
17 <td th:text="${d.getOrder().getDate()}"></td>
18 </tr>
19 </tbody>
20 </table>
21</div>
Note: See TracBrowser for help on using the repository browser.