Ignore:
Timestamp:
02/04/24 17:48:29 (5 months ago)
Author:
Blazho <aleksandar.blazhevski@…>
Branches:
master
Parents:
ee27685
Message:

Vraboteniot ja planira dostavata na narackata(https://develop.finki.ukim.mk/projects/cbdb/wiki/useCase10)

File:
1 edited

Legend:

Unmodified
Added
Removed
  • src/main/resources/templates/stavka.html

    ree27685 ra226bc3  
    2020    <ul class="navbar-nav ml-auto">
    2121      <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>
    2323      </li>
    2424      <li class="nav-item">
     
    5252      <td th:text="${stavka.nacin}"></td>
    5353      <td>
    54         <button class="btn btn-primary">View</button>
     54        <button class="btn btn-primary" disabled>View</button>
    5555        <button class="btn btn-danger" disabled>Delete</button>
    5656      </td>
    5757    </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>
    5880    </tbody>
    5981  </table>
Note: See TracChangeset for help on using the changeset viewer.