source: Git/target/classes/templates/fragments/searchBarGenre.html@ c02189f

main
Last change on this file since c02189f was c02189f, checked in by Petar Partaloski <ppartaloski@…>, 2 years ago

Added new core functionalities, fixed bugs and improved visual clarity

  • Property mode set to 100644
File size: 663 bytes
Line 
1<div xmlns="http://www.w3.org/1999/xhtml" xmlns:th="http://www.thymeleaf.org" style="width:60%; margin: auto; margin-bottom: 10px">
2 <select th:if="${genres!=null}" id="searchGenre" class="form-control" style="float: left; display: block; width: 50%">
3 <option value="" selected>Сите</option>
4 <option th:each="genre: ${genres}" th:value="${genre.getGenreType()}" th:text="${genre.getGenreType()}"></option>
5 </select>
6 <div class="input-group-append" style="width: 40%">
7 <button class="btn btn-secondary search-button" style="width: 100%">Филтрирај по жанр</button>
8 </div>
9</div>
Note: See TracBrowser for help on using the repository browser.