Ignore:
Timestamp:
02/07/23 14:48:59 (22 months ago)
Author:
DenicaKj <dkorvezir@…>
Branches:
master
Children:
cb5debb
Parents:
3242ef4
Message:

Trying To Call A procedure from databasee

File:
1 edited

Legend:

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

    r3242ef4 r3650316  
    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.