Ignore:
File:
1 edited

Legend:

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

    r3650316 r8d49568  
    200200</style>
    201201<div>
     202    <form th:action="@{'/home/getFilm/{id}' (id=${film.getId_film()})}"
     203          th:method="POST">
     204
    202205    <div class="form-group">
    203206        <label style="color: white;font-size: 20px;font-weight: bold">Кино</label>
    204         <select name="cinemas" class="form-control">
     207        <select name="cinemas" class="form-control" id="cinema">
    205208            <option
    206209                    th:selected="${cinemas.get(1)}"
     
    210213            </option>
    211214        </select>
     215
    212216    </div>
     217        <button class="button" type="submit">Filter</button>
     218</form>
    213219
    214220</div>
    215221<div xmlns:th="http://www.thymeleaf.org">
    216222    <div class="main">
    217 <!--        <div th:each="film : ${films}" class="container">-->
    218 <!--            <div class="card">-->
    219 <!--                <div class="imgBx">-->
    220 <!--                    <img th:src="@{${film.getUrl()}}"/>-->
    221 <!--                </div>-->
    222 <!--                <div class="contentBx">-->
    223 <!--                    <h2  th:text="${film.getName()}"></h2>-->
    224 <!--                    <div class="size">-->
    225 <!--                        <h3>Duration :</h3>-->
    226 <!--                        <span th:text="${film.getDuration()}"></span>-->
    227 <!--                    </div>-->
    228 <!--                    <div class="color">-->
    229 <!--                        <h3>Genre:</h3>-->
    230 <!--                        <span th:text="${film.getGenre()}"></span>-->
    231 <!--                    </div>-->
    232 <!--                    <form th:action="@{'/home/getFilm/{id}' (id=${film.getId_film()})}"-->
    233 <!--                          th:method="GET">-->
    234 <!--                        <button class="button" type="submit">Details</button>-->
    235 <!--                    </form>-->
    236 
    237 
    238 <!--                </div>-->
    239 <!--            </div>-->
    240 <!--        </div>-->
    241         <div th:each="film : ${films}" class="container">
     223        <div    th:if="${films.isEmpty()} == false"
     224                th:each="film : ${films}" class="container">
    242225            <div class="card">
    243226                <div class="imgBx">
    244                     <img th:src="@{${film.getUrl()}}"/>
     227                    <img th:src=""/>
    245228                </div>
    246229                <div class="contentBx">
    247                     <h2  th:text="${film.getName()}"></h2>
    248                     <div class="size">
    249                         <h3>Duration :</h3>
    250                         <span th:text="${film.getDuration()}"></span>
     230                    <h2  th:if="${films.isEmpty()} == false"
     231                            th:text="${film.getName()}"></h2>
     232                    <div class="color">
     233                        <h3>Start Date:</h3>
     234                        <span th:if="${films.isEmpty()} == false"
     235                                th:text="${film.getStart_date()}"></span>
    251236                    </div>
    252                     <div class="color">
    253                         <h3>Genre:</h3>
    254                         <span th:text="${film.getGenre()}"></span>
    255                     </div>
    256                     <form th:action="@{'/home/getFilm/{id}' (id=${film.getId_film()})}"
     237                    <form th:if="${films.isEmpty()} == false"
     238                            th:action="@{'/home/getFilm/{id}' (id=${film.getId_film()})}"
    257239                          th:method="GET">
    258240                        <button class="button" type="submit">Details</button>
Note: See TracChangeset for help on using the changeset viewer.