Ignore:
Timestamp:
01/06/23 19:17:05 (18 months ago)
Author:
andrejtodorovski <82031894+andrejtodorovski@…>
Branches:
main
Children:
cab5859
Parents:
d4b888e
Message:

Added full functionality for changing delivery status,
added bootstrap for some pages

File:
1 edited

Legend:

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

    rd4b888e r9dcbf44  
    11<div>
    2 <h1>Резултат од филтерот</h1>
     2<h1 class="mt-3 mb-3">Резултат од филтерот</h1>
    33<a th:href="${'/products'}">Врати се на сите производи</a>
    4 
    5 <table>
    6     <thead>
     4    <h3 th:if="${hasError}" th:text="${error}"></h3>
     5    <div th:if="${!hasError}">
     6<table class="table table-bordered mt-3">
     7    <thead class="thead-dark">
    78    <tr>
    8         <th>Name</th>
    9         <th>Manufacturer</th>
    10         <th>Details</th>
     9        <th scope="col">Име</th>
     10        <th scope="col">Производител</th>
     11        <th scope="col">Детали</th>
    1112    </tr>
    1213    </thead>
     
    1718        <td>
    1819            <form th:action="@{'/part/{id}' (id=${f.getPartid()}) }">
    19                 <button type="submit">Детали</button>
     20                <button class="btn btn-primary btn-block btn-lg w-50" type="submit">Детали</button>
    2021            </form>
    2122        </td>
     
    2324    </tbody>
    2425</table>
    25 
     26    </div>
    2627</div>
Note: See TracChangeset for help on using the changeset viewer.