Changeset 4158cac
- Timestamp:
- 08/24/23 12:25:25 (15 months ago)
- Branches:
- master
- Children:
- 4173acf
- Parents:
- bcb4acc
- Location:
- src/main/resources/templates
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
src/main/resources/templates/events.html
rbcb4acc r4158cac 203 203 <form style="margin-left: 20px" th:action="@{'/home/events'}" 204 204 th:method="GET"> 205 206 <div class="form-group"> 207 <label style="color: white;font-size: 20px;font-weight: bold">Избери Кино:</label> 208 <select name="id_cinema" class="form-control" id="id_cinema"> 209 <option th:value="${null}" text="Please Select"></option> 210 <option 211 th:each="cinema : ${cinemas}" 212 th:value="${cinema.getId_cinema()}" 213 th:text="${cinema.getName()}"> 214 </option> 215 </select> 216 205 <div class="row"> 206 207 <div class="form-group col-2"> 208 <label style="color: white;font-size: 20px;font-weight: bold">Избери Кино:</label> 209 <select name="id_cinema" class="form-control" id="id_cinema"> 210 <option th:value="${null}" text="Please Select"></option> 211 <option 212 th:each="cinema : ${cinemas}" 213 th:value="${cinema.getId_cinema()}" 214 th:text="${cinema.getName()}"> 215 </option> 216 </select> 217 218 219 </div> 220 <div class="col-10 mt-4"> 221 <button class="button" type="submit">Филтрирај</button> 222 </div> 217 223 </div> 218 <button class="button" type="submit">Filter</button> 224 219 225 </form> 220 226 -
src/main/resources/templates/films.html
rbcb4acc r4158cac 203 203 <form style="margin-left: 20px" th:action="@{'/home/films'}" 204 204 th:method="GET"> 205 206 <div class="form-group"> 205 <div class="row"> 206 207 <div class="form-group col-2"> 207 208 <label style="color: white;font-size: 20px;font-weight: bold">Избери Кино:</label> 208 209 <select name="id_cinema" class="form-control" id="id_cinema"> … … 216 217 217 218 </div> 218 <div class="form-group ">219 <label style="color: white;font-size: 20px;font-weight: bold">Избери Жа рн:</label>219 <div class="form-group col-2"> 220 <label style="color: white;font-size: 20px;font-weight: bold">Избери Жанр:</label> 220 221 <select name="id_genre" class="form-control" id="id_genre"> 221 222 <option th:value="${null}" text="Please Select"></option> … … 228 229 229 230 </div> 230 <button class="button" type="submit">Filter</button> 231 <div class="col-8 mt-4"> 232 <button class="button" type="submit">Филтрирај</button> 233 234 </div> 235 </div> 231 236 </form> 232 237 … … 259 264 </div> 260 265 </div> 266 </div> -
src/main/resources/templates/projections.html
rbcb4acc r4158cac 202 202 <form style="margin-left: 20px" th:action="@{'/home/projections'}" 203 203 th:method="GET"> 204 205 <div class="form-group"> 204 <div class="row"> 205 206 <div class="form-group col-2"> 206 207 <label style="color: white;font-size: 20px;font-weight: bold">Избери Кино:</label> 207 208 <select name="id_cinema" class="form-control" id="id_cinema"> … … 215 216 216 217 </div> 217 <button class="button" type="submit">Filter</button> 218 <div class="col-10 mt-4"> 219 <button class="button" type="submit">Филтрирај</button> 220 </div> 221 222 </div> 223 218 224 </form> 219 225 <div xmlns:th="http://www.thymeleaf.org">
Note:
See TracChangeset
for help on using the changeset viewer.