Index: src/main/java/com/example/moviezone/web/HomeController.java
===================================================================
--- src/main/java/com/example/moviezone/web/HomeController.java	(revision 2a98e34bbd306ae5f65a60e020623f7920fc3112)
+++ src/main/java/com/example/moviezone/web/HomeController.java	(revision 86e187f65285024b0736267d80fd9f19a28682a9)
@@ -145,5 +145,5 @@
 //    }
 
-    @GetMapping("/films")
+    //@GetMapping("/films")
     @Transactional
     public String getFilmsPage(Model model){
@@ -158,16 +158,17 @@
 
 
-//    @GetMapping("/films")
-//    public String getFilmsPage1(Model model,@RequestParam(required = false) Integer id_cinema){
-//        model.addAttribute("cinemas",cinemaService.findAllCinemas());
-//        if (id_cinema!=null) {
-//            model.addAttribute("films",filmService.getFilmsFromCinema(id_cinema));
-//        }else{
-////            List<FilmsReturnTable> pom=new LinkedList<>();
-//            model.addAttribute("films",filmService.findAllFilms());
-//        }
-//        model.addAttribute("bodyContent","films");
-//        return "master-template";
-//    }
+    @GetMapping("/films")
+    @Transactional
+    public String getFilmsPage1(Model model,@RequestParam(required = false) Integer id_cinema){
+        model.addAttribute("cinemas",cinemaService.findAllCinemas());
+        if (id_cinema!=null) {
+            model.addAttribute("films",filmService.getFilmsFromCinema(id_cinema));
+        }else{
+            List<FilmsReturnTable> pom=new LinkedList<>();
+            model.addAttribute("films",filmService.findAllFilms());
+        }
+        model.addAttribute("bodyContent","films");
+        return "master-template";
+    }
 
 //    @PostMapping("/getFilmsFromCinema")
Index: src/main/resources/templates/films.html
===================================================================
--- src/main/resources/templates/films.html	(revision 2a98e34bbd306ae5f65a60e020623f7920fc3112)
+++ src/main/resources/templates/films.html	(revision 86e187f65285024b0736267d80fd9f19a28682a9)
@@ -200,32 +200,22 @@
 </style>
 <div>
-<!--    <form th:action="@{'/home/getFilm/{id}' (id=${film.getId_film()})}"-->
-<!--          th:method="POST">-->
-
-<!--    <div class="form-group">-->
-<!--        <label style="color: white;font-size: 20px;font-weight: bold">Кино</label>-->
-<!--        <select name="cinemas" class="form-control" id="cinema">-->
-<!--            <option-->
-<!--                    th:selected="${cinemas.get(1)}"-->
-<!--                    th:each="cinema : ${cinemas}"-->
-<!--                    th:value="${cinema.getId_cinema()}"-->
-<!--                    th:text="${cinema.getName()}">-->
-<!--            </option>-->
-<!--        </select>-->
-
-<!--    </div>-->
-<!--        <button class="button" type="submit">Filter</button>-->
-<!--</form>-->
-    <form id="filter-form">
-
-        <label for="f2">Cinema</label>
-        <select name="id_cinema" id="f2">
-            <option value="">All</option>
-            <option th:each="cinema : ${cinemas}" th:value="${cinema.id_cinema}" th:text="${cinema.name}"> [course]</option>
+    <form th:action="@{'/home/films'}"
+        th:method="GET">
+
+    <div class="form-group">
+        <label style="color: white;font-size: 20px;font-weight: bold">Кино</label>
+        <select name="id_cinema" class="form-control" id="id_cinema">
+            <option
+                    th:selected="${cinemas.get(1)}"
+                    th:each="cinema : ${cinemas}"
+                    th:value="${cinema.getId_cinema()}"
+                    th:text="${cinema.getName()}">
+            </option>
         </select>
-        <button id="filter" type="submit">Filter</button>
-    </form>
-
-</div>
+
+    </div>
+        <button class="button" type="submit">Filter</button>
+</form>
+
 <div xmlns:th="http://www.thymeleaf.org">
     <div class="main">
