source: src/main/resources/templates/myDeliveries.html@ cab5859

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

Added all advanced reports, added bootstrap for every template

  • Property mode set to 100644
File size: 984 bytes
Line 
1<div>
2 <h1 class="mt-3 mb-3">Мои достави</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 w-50" type="submit">Мои следни нарачки</button>
5 </form>
6 <table class="table table-bordered mt-3">
7 <thead class="thead-dark">
8 <tr>
9 <th scope="col">Статус на достава</th>
10 <th scope="col">Адреса на достава</th>
11 <th scope="col">Број на нарачка</th>
12 <th scope="col">Датум на нарачка</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.