Changeset d09caa7


Ignore:
Timestamp:
02/07/23 12:34:01 (22 months ago)
Author:
milamihajlovska <mila.mihajlovska01@…>
Branches:
master
Children:
49263ae
Parents:
0fb69cc
Message:

update events.html

File:
1 edited

Legend:

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

    r0fb69cc rd09caa7  
    199199        <div th:each="event : ${events}" class="container">
    200200            <div class="card">
    201 <!--                <div class="imgBx">-->
    202 <!--&lt;!&ndash;                    <img th:src="@{${film.getUrl()}}"/>&ndash;&gt;-->
    203 <!--                </div>-->
     201                <div class="imgBx">
     202                    <img th:src="@{${event.img_url}}"/>
     203                </div>
    204204                <div class="contentBx">
    205                     <h2  th:text="${event.theme()}"></h2>
     205                    <h2  th:text="${event.theme}"></h2>
    206206                    <div class="size">
    207207                        <h3>Duration :</h3>
    208208                        <span th:text="${event.getDuration()}"></span>
    209209                    </div>
    210 
    211 
     210                    <form th:action="@{'/home/getFilm/{id}' (id=${event.getId_event()})}"
     211                          th:method="GET">
     212                        <button class="button" type="submit">Details</button>
     213                    </form>
    212214                </div>
     215
    213216            </div>
    214217        </div>
Note: See TracChangeset for help on using the changeset viewer.