main
Last change
on this file since feffc2f was feffc2f, checked in by andrejtodorovski <82031894+andrejtodorovski@…>, 23 months ago |
Added some views and functionalities
|
-
Property mode
set to
100644
|
File size:
677 bytes
|
Rev | Line | |
---|
[feffc2f] | 1 | <!DOCTYPE html>
|
---|
| 2 | <html lang="en">
|
---|
| 3 | <head>
|
---|
| 4 | <meta charset="UTF-8">
|
---|
| 5 | <title>Мои нарачки</title>
|
---|
| 6 | </head>
|
---|
| 7 | <body>
|
---|
| 8 | <h1>Мои нарачки</h1>
|
---|
| 9 | <table>
|
---|
| 10 | <thead>
|
---|
| 11 | <tr>
|
---|
| 12 | <th>Датум на нарачка</th>
|
---|
| 13 | <th>Нарачан дел</th>
|
---|
| 14 | <th>Цена</th>
|
---|
| 15 | <th>Количина</th>
|
---|
| 16 | <th>Статус</th>
|
---|
| 17 | </tr>
|
---|
| 18 | </thead>
|
---|
| 19 | <tbody>
|
---|
| 20 | <tr th:each="order : ${userOrders}">
|
---|
| 21 | <td th:text="${order.getOrderdate}"></td>
|
---|
| 22 | <td th:text="${order.getPartname()}"></td>
|
---|
| 23 | <td th:text="${order.getAmount()}"></td>
|
---|
| 24 | <td th:text="${order.getQuantity()}"></td>
|
---|
| 25 | <td th:text="${order.getStatus()}"></td>
|
---|
| 26 | </tr>
|
---|
| 27 | </tbody>
|
---|
| 28 | </table>
|
---|
| 29 | </body>
|
---|
| 30 | </html> |
---|
Note:
See
TracBrowser
for help on using the repository browser.