Ignore:
File:
1 edited

Legend:

Unmodified
Added
Removed
  • src/main/resources/templates/projections.html

    r90317ea r49263ae  
    198198    <div class="main">
    199199
    200 
    201         <div th:each="film: ${films}" class="container">
     200<!--<div th:each="projection: ${projections}">-->
     201
     202        <div th:each="projection: ${projections}" class="container">
    202203            <div class="card">
    203204                <div class="imgBx">
    204                     <img th:src="@{${film.getUrl()}}"/>
     205                    <img th:src="@{${projection.film.getUrl()}}"/>
    205206                </div>
    206207                <div class="contentBx">
    207                     <h2  th:text="${film.getName()}"></h2>
     208                    <h2  th:text="${projection.film.getName()}"></h2>
    208209                    <div class="size">
    209210                        <h3>Duration :</h3>
    210                         <span th:text="${film.getDuration()}"></span>
     211                        <span th:text="${projection.film.getDuration()}"></span>
    211212                    </div>
    212213                    <div class="color">
    213214                        <h3>Genre:</h3>
    214                         <span th:text="${film.getGenre()}"></span>
     215                        <span th:text="${projection.film.getGenre()}"></span>
    215216                    </div>
    216217                </div>
Note: See TracChangeset for help on using the changeset viewer.