#21 -- Fix date format

This commit is contained in:
Anton Romanov 2025-04-03 12:17:55 +04:00
parent 6e4218fe74
commit 3546e016e1

View File

@ -17,7 +17,7 @@
th:field="*{reportPeriod}"> th:field="*{reportPeriod}">
<option th:each="p : ${reportPeriods}" <option th:each="p : ${reportPeriods}"
th:value="${p.id}" th:value="${p.id}"
th:text="${p.startDate + ' - ' + p.endDate}"> th:text="${#calendars.format(p.startDate, 'dd.MM.yyyy') + ' - ' + #calendars.format(p.endDate, 'dd.MM.yyyy')}">
</option> </option>
</select> </select>
</div> </div>