added year to selection of camp in role management
This commit is contained in:
@ -32,7 +32,7 @@
|
||||
<span class="error" th:each="error : ${#fields.errors('fkCamp')}">[[${error}]]<br /></span> <select id="inputCamp" th:field="*{fkCamp}"
|
||||
th:class="${'form-select ' + (#fields.hasErrors('fkCamp') ? 'inputerror' : '')}">
|
||||
<option value="">--- bitte wählen ---</option>
|
||||
<option th:each="l : ${camps}" th:value="${l.pk}" th:text="${l.name}"></option>
|
||||
<option th:each="l : ${camps}" th:value="${l.pk}" th:text="${l.name + ' ' + #temporals.format(l.arrive, 'yyyy')}"></option>
|
||||
</select>
|
||||
</div>
|
||||
<script type="text/javascript">
|
||||
|
Reference in New Issue
Block a user