Changeset cb5debb for src/main/resources


Ignore:
Timestamp:
02/07/23 15:29:55 (22 months ago)
Author:
milamihajlovska <mila.mihajlovska01@…>
Branches:
master
Children:
8d49568, 93341f8
Parents:
9eba1fb (diff), 3650316 (diff)
Note: this is a merge changeset, the changes displayed below correspond to the merge itself.
Use the (diff) links above to see all the changes relative to each parent.
Message:

Merge branch 'master' of https://github.com/DenicaKj/MovieZone

File:
1 edited

Legend:

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

    r9eba1fb rcb5debb  
    194194        border-radius: 20px;
    195195    }
     196    .form-group{
     197        width: 200px;
     198    }
     199
    196200</style>
     201<div>
     202    <div class="form-group">
     203        <label style="color: white;font-size: 20px;font-weight: bold">Кино</label>
     204        <select name="cinemas" class="form-control">
     205            <option
     206                    th:selected="${cinemas.get(1)}"
     207                    th:each="cinema : ${cinemas}"
     208                    th:value="${cinema.getId_cinema()}"
     209                    th:text="${cinema.getName()}">
     210            </option>
     211        </select>
     212    </div>
     213
     214</div>
    197215<div xmlns:th="http://www.thymeleaf.org">
    198216    <div class="main">
Note: See TracChangeset for help on using the changeset viewer.