Changeset 0fb69cc for src/main/resources/templates/films.html
- Timestamp:
- 02/06/23 20:10:28 (23 months ago)
- Branches:
- master
- Children:
- d09caa7
- Parents:
- b5ce654
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
src/main/resources/templates/films.html
rb5ce654 r0fb69cc 221 221 </div> 222 222 </div> 223 <div th:each="film : ${films}" class="container"> 224 <div class="card"> 225 <div class="imgBx"> 226 <img th:src="@{${film.getUrl()}}"/> 227 </div> 228 <div class="contentBx"> 229 <h2 th:text="${film.getName()}"></h2> 230 <div class="size"> 231 <h3>Duration :</h3> 232 <span th:text="${film.getDuration()}"></span> 233 </div> 234 <div class="color"> 235 <h3>Genre:</h3> 236 <span th:text="${film.getGenre()}"></span> 237 </div> 238 <form th:action="@{'/home/getFilm/{id}' (id=${film.getId_film()})}" 239 th:method="GET"> 240 <button class="button" type="submit">Details</button> 241 </form> 242 243 244 </div> 245 </div> 246 </div> 223 247 </div> 224 248 </div>
Note:
See TracChangeset
for help on using the changeset viewer.