Changeset 89865ae for src/main/resources/templates/currentOrder.html
- Timestamp:
- 01/06/23 21:29:06 (23 months ago)
- Branches:
- main
- Children:
- 4d67d70
- Parents:
- cab5859
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
src/main/resources/templates/currentOrder.html
rcab5859 r89865ae 3 3 <div th:if="${!hasError}"> 4 4 <h3 class="mt-3 mb-3"> 5 Нарачка за корисник : <span th:text="${order.getUser().getUsername()}"></span>5 Тековна нарачка за корисник : <span th:text="${order.getUser().getUsername()}"></span> 6 6 </h3> 7 7 <table class="table table-bordered"> 8 8 <thead class="thead-dark"> 9 9 <tr> 10 <th>Name</th> 11 <th>Manufacturer</th> 10 <th>Име</th> 11 <th>Производител</th> 12 <th>Количина</th> 13 <th>Вкупна цена</th> 12 14 </tr> 13 15 </thead> 14 16 <tbody> 15 17 <tr th:each="part : ${parts}"> 16 <td th:text="${part.getName()}"></td> 17 <td th:text="${part.getManufacturer().getName()}"></td> 18 <td th:text="${part.getPartName()}"></td> 19 <td th:text="${part.getManufacturerName()}"></td> 20 <td th:text="${part.getQuantity()}"></td> 21 <td th:text="${part.getPrice()}"></td> 22 18 23 </tr> 19 24 </tbody> 20 25 </table> 26 <h3>Вкупен износ : <span th:text="${total}"></span></h3> 21 27 <form th:action="@{'/part/delivery/'}"> 22 28 <button class="btn btn-primary btn-block btn-lg" type="submit">Испрати нарачка</button>
Note:
See TracChangeset
for help on using the changeset viewer.