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/addProjection.html

    r40935d3 r1e7126f  
    1717                    <div class="form-group">
    1818                        <label for="date_time_start">Почетен датум</label>
    19                         <input type="date"
     19                        <input type="datetime-local"
    2020                               class="form-control"
    2121                               id="date_time_start"
     
    2525                    <div class="form-group">
    2626                        <label for="date_time_end">Краен датум</label>
    27                         <input type="date"
     27                        <input type="datetime-local"
    2828                               class="form-control"
    2929                               id="date_time_end"
     
    4141                        </select>
    4242                    </div>
    43 
     43                    <div class="form-group">
     44                        <label>Сала</label>
     45                        <select name="id_room" id="pr" class="form-control">
     46                            <option
     47                                    th:each="pr : ${projection_rooms}"
     48                                    th:value="${pr.id_room}"
     49                                    th:text="${pr.projection_room_number} + '-' + ${pr.cinema.name}">
     50                            </option>
     51                        </select>
     52                    </div>
     53                    <div class="form-group">
     54                        <label>Попуст</label>
     55                        <select name="id_discount" id="f2" class="form-control">
     56                            <option
     57                                    th:each="d : ${discounts}"
     58                                    th:value="${d.id_discount}"
     59                                    th:text="${d.type} + '-' + ${d.percent}">
     60                            </option>
     61                        </select>
     62                    </div>
    4463                    <button style="background-color: #ff5019" id="submit" type="submit" class="btn btn-primary">Додади</button>
    4564                </form>
Note: See TracChangeset for help on using the changeset viewer.