source: src/main/resources/templates/orderInfo.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: 687 bytes
Line 
1<div>
2 <h1>Нарачка број <span th:text="${o.getOrderid()}"></span></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.getPartname}"></td>
14 <td th:text="${p.getQuantity()}"></td>
15 <td th:text="${p.getManufacturername()}"></td>
16 </tr>
17 </tbody>
18 </table>
19 <form method="post" th:action="@{'/finishDelivery/{id}' (id=${o.getOrderid()}) }">
20 <button class="btn btn-primary btn-block btn-lg" type="submit">Заврши достава</button>
21 </form>
22</div>
Note: See TracBrowser for help on using the repository browser.