main
Last change
on this file since 89865ae was cab5859, checked in by andrejtodorovski <82031894+andrejtodorovski@…>, 23 months ago |
Added all advanced reports, added bootstrap for every template
|
-
Property mode
set to
100644
|
File size:
618 bytes
|
Rev | Line | |
---|
[60de3eb] | 1 | <div>
|
---|
[cab5859] | 2 | <h1 class="mt-3 mb-3">Мои нарачки</h1>
|
---|
| 3 | <table class="table table-bordered">
|
---|
| 4 | <thead class="thead-dark">
|
---|
[feffc2f] | 5 | <tr>
|
---|
| 6 | <th>Датум на нарачка</th>
|
---|
| 7 | <th>Нарачан дел</th>
|
---|
| 8 | <th>Цена</th>
|
---|
| 9 | <th>Количина</th>
|
---|
| 10 | <th>Статус</th>
|
---|
| 11 | </tr>
|
---|
| 12 | </thead>
|
---|
| 13 | <tbody>
|
---|
| 14 | <tr th:each="order : ${userOrders}">
|
---|
| 15 | <td th:text="${order.getOrderdate}"></td>
|
---|
| 16 | <td th:text="${order.getPartname()}"></td>
|
---|
| 17 | <td th:text="${order.getAmount()}"></td>
|
---|
| 18 | <td th:text="${order.getQuantity()}"></td>
|
---|
| 19 | <td th:text="${order.getStatus()}"></td>
|
---|
| 20 | </tr>
|
---|
| 21 | </tbody>
|
---|
| 22 | </table>
|
---|
[60de3eb] | 23 | </div>
|
---|
Note:
See
TracBrowser
for help on using the repository browser.