added year to selection of camp in role management

This commit is contained in:
Jottyfan 2023-09-28 21:41:37 +02:00
parent 12a325ee03
commit f21c7584bd
2 changed files with 2 additions and 2 deletions

View File

@ -8,7 +8,7 @@ plugins {
}
group = 'de.jottyfan.camporganizer'
version = '0.5.7'
version = '0.5.8'
description = """CampOrganizer2"""

View File

@ -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">