Changeset 1e7126f for src/main/resources/templates/films.html
- Timestamp:
- 08/24/23 02:28:14 (15 months ago)
- Branches:
- master
- Children:
- bcb4acc
- Parents:
- 40935d3
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
src/main/resources/templates/films.html
r40935d3 r1e7126f 216 216 217 217 </div> 218 <div class="form-group"> 219 <label style="color: white;font-size: 20px;font-weight: bold">Избери Жарн:</label> 220 <select name="id_cinema" class="form-control" id="id_cinema"> 221 <option 222 th:selected="${genres.get(1)}" 223 th:each="genre : ${genres}" 224 th:value="${}" 225 th:text="${cinema.getName()}"> 226 </option> 227 </select> 228 229 </div> 218 230 <button class="button" type="submit">Filter</button> 219 231 </form> … … 223 235 <div th:if="${films.isEmpty()} == false" 224 236 th:each="film : ${films}" class="container"> 225 <div class="card" >237 <div class="card" style="margin-left: 2%;margin-bottom: 2%"> 226 238 <div class="imgBx"> 227 239 <img th:src="@{${film.getUrl()}}"/>
Note:
See TracChangeset
for help on using the changeset viewer.