Changeset 633b371 for src/main/resources/templates/films.html
- Timestamp:
- 02/10/23 14:52:47 (23 months ago)
- Branches:
- master
- Children:
- a8b6e6a
- Parents:
- 04153a9
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
src/main/resources/templates/films.html
r04153a9 r633b371 9 9 10 10 .container{ 11 12 position: relative;11 display: contents; 12 margin: 10%; 13 13 } 14 14 … … 179 179 margin-top: 100px; 180 180 display: flex; 181 flex-wrap: wrap; 181 182 align-items: flex-start; 182 justify-content: flex-start;183 justify-content: space-around; 183 184 } 184 185 .button { … … 200 201 </style> 201 202 <div> 202 <form th:action="@{'/home/films'}"203 <form style="margin-left: 20px" th:action="@{'/home/films'}" 203 204 th:method="GET"> 204 205 205 206 <div class="form-group"> 206 <label style="color: white;font-size: 20px;font-weight: bold"> Кино</label>207 <label style="color: white;font-size: 20px;font-weight: bold">Избери Кино:</label> 207 208 <select name="id_cinema" class="form-control" id="id_cinema"> 208 209 <option … … 216 217 </div> 217 218 <button class="button" type="submit">Filter</button> 218 </form>219 </form> 219 220 220 221 <div xmlns:th="http://www.thymeleaf.org"> 221 <div class="main" style="width: available;height: available ">222 <div class="main" style="width: available;height: available;padding: 5%"> 222 223 <div th:if="${films.isEmpty()} == false" 223 224 th:each="film : ${films}" class="container">
Note:
See TracChangeset
for help on using the changeset viewer.