source: src/main/resources/templates/myDeliveries.html@ 4d67d70

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

Final touches

  • Property mode set to 100644
File size: 984 bytes
RevLine 
[1bd8d1e]1<div>
[cab5859]2 <h1 class="mt-3 mb-3">Мои достави</h1>
[9dcbf44]3 <form class="form-signin mt-xl-5" method="get" action="/myNextDeliveries">
[4d67d70]4 <button id="submit" class="btn btn-lg btn-primary btn-block w-50" type="submit">Мои следни достави</button>
[9dcbf44]5 </form>
[cab5859]6 <table class="table table-bordered mt-3">
7 <thead class="thead-dark">
[1bd8d1e]8 <tr>
[cab5859]9 <th scope="col">Статус на достава</th>
10 <th scope="col">Адреса на достава</th>
11 <th scope="col">Број на нарачка</th>
12 <th scope="col">Датум на нарачка</th>
[1bd8d1e]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.