Changeset 9dcbf44 for src/main/resources/templates/products.html
- Timestamp:
- 01/06/23 19:17:05 (23 months ago)
- Branches:
- main
- Children:
- cab5859
- Parents:
- d4b888e
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
src/main/resources/templates/products.html
rd4b888e r9dcbf44 9 9 </header> 10 10 <main> 11 <h1 >Сите производи</h1>11 <h1 class="mt-3 mb-3">Сите производи</h1> 12 12 <form th:action="@{/filtered}"> 13 <label for="cartype"></label><select id="cartype" required name="cartype">13 <label for="cartype"></label><select id="cartype" class="form-control w-25 d-inline mr-3" required name="cartype"> 14 14 <option th:each="car : ${cars}" 15 15 th:text="${car.getCartype()}" … … 17 17 </option> 18 18 </select> 19 <label for="category"></label><select id="category" required name="category">19 <label for="category"></label><select id="category" class="form-control w-25 d-inline mr-3" required name="category"> 20 20 <option th:each="cat : ${categories}" 21 21 th:text="${cat.getCname()}" … … 23 23 </option> 24 24 </select> 25 <button type="submit">Филтрирај</button>25 <button class="btn btn-lg btn-block btn-primary w-25 d-inline" type="submit">Филтрирај</button> 26 26 </form> 27 <table >28 <thead >27 <table class="table table-bordered mt-4"> 28 <thead class="thead-dark"> 29 29 <tr> 30 <th >Name</th>31 <th >Manufacturer</th>32 <th >Details</th>30 <th scope="col">Име</th> 31 <th scope="col">Производител</th> 32 <th scope="col">Детали</th> 33 33 </tr> 34 34 </thead> … … 39 39 <td> 40 40 <form th:action="@{'/part/{id}' (id=${part.getId()}) }"> 41 <button type="submit">Детали</button>41 <button class="btn btn-primary btn-block btn-lg w-50" type="submit">Детали</button> 42 42 </form> 43 43 </td>
Note:
See TracChangeset
for help on using the changeset viewer.