Changeset a226bc3 for src/main/resources/templates/stavka.html
- Timestamp:
- 02/04/24 17:48:29 (9 months ago)
- Branches:
- master
- Parents:
- ee27685
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
src/main/resources/templates/stavka.html
ree27685 ra226bc3 20 20 <ul class="navbar-nav ml-auto"> 21 21 <li class="nav-item active"> 22 <a class="nav-link" href="#">Home <span class="sr-only">(current)</span></a>22 <a class="nav-link" th:href="@{/}">Home <span class="sr-only">(current)</span></a> 23 23 </li> 24 24 <li class="nav-item"> … … 52 52 <td th:text="${stavka.nacin}"></td> 53 53 <td> 54 <button class="btn btn-primary" >View</button>54 <button class="btn btn-primary" disabled>View</button> 55 55 <button class="btn btn-danger" disabled>Delete</button> 56 56 </td> 57 57 </tr> 58 </tbody> 59 </table> 60 61 <h3>Information for the items of the order</h3> 62 <table class="table"> 63 <thead> 64 <tr> 65 <th>Ime recept</th> 66 <th>Adresa</th> 67 <th>Sostojka</th> 68 <th>Action</th> 69 </tr> 70 </thead> 71 <tbody> 72 <tr th:each="dostava: ${podatoci}"> 73 <td th:text="${dostava.recIme()}"></td> 74 <td th:text="${dostava.adresa()}"></td> 75 <td th:text="${dostava.sostojka()}"></td> 76 <td> 77 <button class="btn btn-primary">Select</button> 78 </td> 79 </tr> 58 80 </tbody> 59 81 </table>
Note:
See TracChangeset
for help on using the changeset viewer.