source: src/main/resources/templates/myDeliveries.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: 860 bytes
Line 
1<div>
2 <h1>Мои достави</h1>
3 <form class="form-signin mt-xl-5" method="get" action="/myNextDeliveries">
4 <button id="submit" class="btn btn-lg btn-primary btn-block" type="submit">Мои следни нарачки</button>
5 </form>
6 <table>
7 <thead>
8 <tr>
9 <th>Статус на достава</th>
10 <th>Адреса на достава</th>
11 <th>Број на нарачка</th>
12 <th>Датум на нарачка</th>
13 </tr>
14 </thead>
15 <tbody>
16 <tr th:each="d : ${deliveries}">
17 <td th:text="${d.getStatus}"></td>
18 <td th:text="${d.getAddress()}"></td>
19 <td th:text="${d.getOrder().getOrderid()}"></td>
20 <td th:text="${d.getOrder().getDate()}"></td>
21 </tr>
22 </tbody>
23 </table>
24</div>
Note: See TracBrowser for help on using the repository browser.