source: src/main/resources/templates/myWarehouse.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: 469 bytes
Line 
1<div>
2 <h1>Мој магацин</h1>
3 <table>
4 <thead>
5 <tr>
6 <th>Магацин</th>
7 <th>Дел</th>
8 <th>Количина</th>
9 </tr>
10 </thead>
11 <tbody>
12 <tr th:each="p : ${parts}">
13 <td th:text="${p.getWarehouseid}"></td>
14 <td th:text="${p.getPartid()}"></td>
15 <td th:text="${p.getQuantity()}"></td>
16 </tr>
17 </tbody>
18 </table>
19</div>
Note: See TracBrowser for help on using the repository browser.