Changeset c79897f for src/main/resources/templates/addPart.html
- Timestamp:
- 03/18/23 23:33:54 (20 months ago)
- Branches:
- main
- Children:
- e2104c4
- Parents:
- 60e9cc1
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
src/main/resources/templates/addPart.html
r60e9cc1 rc79897f 22 22 <p> 23 23 <label for="cars">Соодветно за</label> 24 <!-- <select class="form-control" id="cars" name="cars" required multiple="multiple">-->25 <!-- <option th:each="c : ${cars}"--> 26 <!-- th:text="${c.getCartype()}"--> 27 <!-- th:value="${c.getId()}">-->28 <!-- </option>-->29 <!-- </select>-->30 <input type="checkbox" name="cars" id="cars" 31 th:each="c : ${cars}" 32 th:text="${c.getCartype()}" 33 th:value="${c.getId()}" 34 />24 <select class="form-control" id="cars" name="cars" required multiple="multiple"> 25 <option th:each="c : ${cars}" 26 th:text="${c.getCartype()}" 27 th:value="${c.getId()}"> 28 </option> 29 </select> 30 <!-- <input type="checkbox" name="cars" id="cars"--> 31 <!-- th:each="c : ${cars}"--> 32 <!-- th:text="${c.getCartype()}"--> 33 <!-- th:value="${c.getId()}"--> 34 <!-- />--> 35 35 </p> 36 36 <p> 37 37 <label for="categories">Во категории</label> 38 <!-- <select class="form-control" id="categories" name="categories" required multiple="multiple">-->39 <!-- <option th:each="c : ${categories}"--> 40 <!-- th:text="${c.getCname()}"--> 41 <!-- th:value="${c.getId()}">-->42 <!-- </option>-->43 <!-- </select>-->44 <input type="checkbox" name="categories" id="categories" 45 th:each="c : ${categories}" 46 th:text="${c.getCname()}" 47 th:value="${c.getId()}" 48 />38 <select class="form-control" id="categories" name="categories" required multiple="multiple"> 39 <option th:each="c : ${categories}" 40 th:text="${c.getCname()}" 41 th:value="${c.getId()}"> 42 </option> 43 </select> 44 <!-- <input type="checkbox" name="categories" id="categories"--> 45 <!-- th:each="c : ${categories}"--> 46 <!-- th:text="${c.getCname()}"--> 47 <!-- th:value="${c.getId()}"--> 48 <!-- />--> 49 49 </p> 50 50 <p>
Note:
See TracChangeset
for help on using the changeset viewer.