Index: src/main/resources/templates/events.html
===================================================================
--- src/main/resources/templates/events.html	(revision 0fb69cc1111c89881e943ce68117a2d3bf39db03)
+++ src/main/resources/templates/events.html	(revision d09caa70b3e756b871284a6f7c86d7dda505896c)
@@ -199,16 +199,19 @@
         <div th:each="event : ${events}" class="container">
             <div class="card">
-<!--                <div class="imgBx">-->
-<!--&lt;!&ndash;                    <img th:src="@{${film.getUrl()}}"/>&ndash;&gt;-->
-<!--                </div>-->
+                <div class="imgBx">
+                    <img th:src="@{${event.img_url}}"/>
+                </div>
                 <div class="contentBx">
-                    <h2  th:text="${event.theme()}"></h2>
+                    <h2  th:text="${event.theme}"></h2>
                     <div class="size">
                         <h3>Duration :</h3>
                         <span th:text="${event.getDuration()}"></span>
                     </div>
-
-
+                    <form th:action="@{'/home/getFilm/{id}' (id=${event.getId_event()})}"
+                          th:method="GET">
+                        <button class="button" type="submit">Details</button>
+                    </form>
                 </div>
+
             </div>
         </div>
