Changeset 1e7126f for src/main/resources/templates/addProjection.html
- Timestamp:
- 08/24/23 02:28:14 (15 months ago)
- Branches:
- master
- Children:
- bcb4acc
- Parents:
- 40935d3
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
src/main/resources/templates/addProjection.html
r40935d3 r1e7126f 17 17 <div class="form-group"> 18 18 <label for="date_time_start">Почетен датум</label> 19 <input type="date "19 <input type="datetime-local" 20 20 class="form-control" 21 21 id="date_time_start" … … 25 25 <div class="form-group"> 26 26 <label for="date_time_end">Краен датум</label> 27 <input type="date "27 <input type="datetime-local" 28 28 class="form-control" 29 29 id="date_time_end" … … 41 41 </select> 42 42 </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> 44 63 <button style="background-color: #ff5019" id="submit" type="submit" class="btn btn-primary">Додади</button> 45 64 </form>
Note:
See TracChangeset
for help on using the changeset viewer.