- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
src/main/resources/templates/projections.html
r90317ea r49263ae 198 198 <div class="main"> 199 199 200 201 <div th:each="film: ${films}" class="container"> 200 <!--<div th:each="projection: ${projections}">--> 201 202 <div th:each="projection: ${projections}" class="container"> 202 203 <div class="card"> 203 204 <div class="imgBx"> 204 <img th:src="@{${ film.getUrl()}}"/>205 <img th:src="@{${projection.film.getUrl()}}"/> 205 206 </div> 206 207 <div class="contentBx"> 207 <h2 th:text="${ film.getName()}"></h2>208 <h2 th:text="${projection.film.getName()}"></h2> 208 209 <div class="size"> 209 210 <h3>Duration :</h3> 210 <span th:text="${ film.getDuration()}"></span>211 <span th:text="${projection.film.getDuration()}"></span> 211 212 </div> 212 213 <div class="color"> 213 214 <h3>Genre:</h3> 214 <span th:text="${ film.getGenre()}"></span>215 <span th:text="${projection.film.getGenre()}"></span> 215 216 </div> 216 217 </div>
Note:
See TracChangeset
for help on using the changeset viewer.