Changeset 4158cac for src/main/resources/templates/events.html
- Timestamp:
- 08/24/23 12:25:25 (15 months ago)
- Branches:
- master
- Children:
- 4173acf
- Parents:
- bcb4acc
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
src/main/resources/templates/events.html
rbcb4acc r4158cac 203 203 <form style="margin-left: 20px" th:action="@{'/home/events'}" 204 204 th:method="GET"> 205 206 <div class="form-group"> 207 <label style="color: white;font-size: 20px;font-weight: bold">Избери Кино:</label> 208 <select name="id_cinema" class="form-control" id="id_cinema"> 209 <option th:value="${null}" text="Please Select"></option> 210 <option 211 th:each="cinema : ${cinemas}" 212 th:value="${cinema.getId_cinema()}" 213 th:text="${cinema.getName()}"> 214 </option> 215 </select> 216 205 <div class="row"> 206 207 <div class="form-group col-2"> 208 <label style="color: white;font-size: 20px;font-weight: bold">Избери Кино:</label> 209 <select name="id_cinema" class="form-control" id="id_cinema"> 210 <option th:value="${null}" text="Please Select"></option> 211 <option 212 th:each="cinema : ${cinemas}" 213 th:value="${cinema.getId_cinema()}" 214 th:text="${cinema.getName()}"> 215 </option> 216 </select> 217 218 219 </div> 220 <div class="col-10 mt-4"> 221 <button class="button" type="submit">Филтрирај</button> 222 </div> 217 223 </div> 218 <button class="button" type="submit">Filter</button> 224 219 225 </form> 220 226
Note:
See TracChangeset
for help on using the changeset viewer.