Jottyfan
2023-03-26 21:18:57 +02:00
parent edb0430456
commit 93a1289629
19 changed files with 208 additions and 48 deletions

View File

@ -40,12 +40,16 @@
<td th:text="${booker.accept == null ? '' : (booker.accept ? 'Ja' : 'abgelehnt')}"></td>
</tr>
<tr>
<th>Preis</th>
<th>Freizeitpreis</th>
<td th:text="${booker.price}" />
</tr>
<tr>
<th>Kontostand</th>
<td><span th:text="${#numbers.formatDecimal(booker.paid, 1, 2) + ' €'}" th:if="${booker.paid != null}"></span>
<td><span th:text="${#numbers.formatDecimal(booker.paid, 1, 2) + ' €'}" th:if="${booker.paid != null}"></span></td>
</tr>
<tr style="display: none"><!-- insert field not yet implemented -->
<th>zu zahlen</th>
<td><span th:text="${#numbers.formatDecimal(booker.requiredPrice, 1, 2) + ' €'}" th:if="${booker.requiredPrice != null}"></span></td>
</tr>
</tbody>
</table>