added required price, see #6
This commit is contained in:
@ -43,6 +43,10 @@
|
||||
<th>Freizeitpreis</th>
|
||||
<td th:text="${booker.price}" />
|
||||
</tr>
|
||||
<tr th:if="${booker.requiredPrice}">
|
||||
<th>davon für <span th:text="${booker.name}"></span></th>
|
||||
<td th:text="${#numbers.formatDecimal(booker.requiredPrice, 1, 2) + ' €'}"></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<th>Kontostand</th>
|
||||
<td><span th:text="${#numbers.formatDecimal(booker.paid, 1, 2) + ' €'}" th:if="${booker.paid != null}"></span></td>
|
||||
|
Reference in New Issue
Block a user