Changeset d09caa7
- Timestamp:
- 02/07/23 12:34:01 (22 months ago)
- Branches:
- master
- Children:
- 49263ae
- Parents:
- 0fb69cc
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
src/main/resources/templates/events.html
r0fb69cc rd09caa7 199 199 <div th:each="event : ${events}" class="container"> 200 200 <div class="card"> 201 <!-- <div class="imgBx">-->202 <!--<!– <img th:src="@{${film.getUrl()}}"/>–>-->203 <!-- </div>-->201 <div class="imgBx"> 202 <img th:src="@{${event.img_url}}"/> 203 </div> 204 204 <div class="contentBx"> 205 <h2 th:text="${event.theme ()}"></h2>205 <h2 th:text="${event.theme}"></h2> 206 206 <div class="size"> 207 207 <h3>Duration :</h3> 208 208 <span th:text="${event.getDuration()}"></span> 209 209 </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> 212 214 </div> 215 213 216 </div> 214 217 </div>
Note:
See TracChangeset
for help on using the changeset viewer.