Changeset 86e187f for src/main/resources/templates/films.html
- Timestamp:
- 02/08/23 12:33:30 (22 months ago)
- Branches:
- master
- Children:
- 61fed7c
- Parents:
- 2a98e34
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
src/main/resources/templates/films.html
r2a98e34 r86e187f 200 200 </style> 201 201 <div> 202 <!-- <form th:action="@{'/home/getFilm/{id}' (id=${film.getId_film()})}"--> 203 <!-- th:method="POST">--> 204 205 <!-- <div class="form-group">--> 206 <!-- <label style="color: white;font-size: 20px;font-weight: bold">Кино</label>--> 207 <!-- <select name="cinemas" class="form-control" id="cinema">--> 208 <!-- <option--> 209 <!-- th:selected="${cinemas.get(1)}"--> 210 <!-- th:each="cinema : ${cinemas}"--> 211 <!-- th:value="${cinema.getId_cinema()}"--> 212 <!-- th:text="${cinema.getName()}">--> 213 <!-- </option>--> 214 <!-- </select>--> 215 216 <!-- </div>--> 217 <!-- <button class="button" type="submit">Filter</button>--> 218 <!--</form>--> 219 <form id="filter-form"> 220 221 <label for="f2">Cinema</label> 222 <select name="id_cinema" id="f2"> 223 <option value="">All</option> 224 <option th:each="cinema : ${cinemas}" th:value="${cinema.id_cinema}" th:text="${cinema.name}"> [course]</option> 202 <form th:action="@{'/home/films'}" 203 th:method="GET"> 204 205 <div class="form-group"> 206 <label style="color: white;font-size: 20px;font-weight: bold">Кино</label> 207 <select name="id_cinema" class="form-control" id="id_cinema"> 208 <option 209 th:selected="${cinemas.get(1)}" 210 th:each="cinema : ${cinemas}" 211 th:value="${cinema.getId_cinema()}" 212 th:text="${cinema.getName()}"> 213 </option> 225 214 </select> 226 <button id="filter" type="submit">Filter</button> 227 </form> 228 229 </div> 215 216 </div> 217 <button class="button" type="submit">Filter</button> 218 </form> 219 230 220 <div xmlns:th="http://www.thymeleaf.org"> 231 221 <div class="main">
Note:
See TracChangeset
for help on using the changeset viewer.