#59 add front thymeleaf
This commit is contained in:
parent
21ba06170a
commit
9f664b2618
@ -27,16 +27,19 @@
|
||||
<div class="col-md-3 col-sm-12">
|
||||
<div class="filter">
|
||||
<h5>Фильтр:</h5>
|
||||
<select class="form-control" id="author"
|
||||
onchange="this.form.submit();">
|
||||
<option value="">Все авторы</option>
|
||||
<option>lastName
|
||||
<select class="selectpicker form-control" id="user"
|
||||
th:field="${filteredConferences.filterUserId}"
|
||||
onchange="this.form.submit();" data-style="btn-primary" data-size="5">
|
||||
<option value="">Все участники</option>
|
||||
<option th:each="user: ${allUsers}" th:value="${user.id}"
|
||||
th:text="${user.lastName}">lastName
|
||||
</option>
|
||||
</select>
|
||||
<select class="form-control" id="year"
|
||||
onchange="this.form.submit();">
|
||||
<select class="selectpicker form-control" id="year" th:field="${filteredConferences.year}"
|
||||
onchange="this.form.submit();" data-style="btn-primary" data-size="5">
|
||||
<option value="">Все годы</option>
|
||||
<option>year
|
||||
<option th:each="year: ${allYears}" th:value="${year}"
|
||||
th:text="${year}">year
|
||||
</option>
|
||||
</select>
|
||||
</div>
|
||||
|
Loading…
Reference in New Issue
Block a user