Ignore:
Timestamp:
08/24/23 02:28:14 (15 months ago)
Author:
DenicaKj <dkorvezir@…>
Branches:
master
Children:
bcb4acc
Parents:
40935d3
Message:

fix

File:
1 edited

Legend:

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

    r40935d3 r1e7126f  
    216216
    217217    </div>
     218        <div class="form-group">
     219            <label style="color: white;font-size: 20px;font-weight: bold">Избери Жарн:</label>
     220            <select name="id_cinema" class="form-control" id="id_cinema">
     221                <option
     222                        th:selected="${genres.get(1)}"
     223                        th:each="genre : ${genres}"
     224                        th:value="${}"
     225                        th:text="${cinema.getName()}">
     226                </option>
     227            </select>
     228
     229        </div>
    218230        <button class="button" type="submit">Filter</button>
    219231    </form>
     
    223235        <div    th:if="${films.isEmpty()} == false"
    224236                th:each="film : ${films}" class="container">
    225             <div class="card">
     237            <div class="card" style="margin-left: 2%;margin-bottom: 2%">
    226238                <div class="imgBx">
    227239                    <img th:src="@{${film.getUrl()}}"/>
Note: See TracChangeset for help on using the changeset viewer.