still buggy on rejecting people and loading old bookings

This commit is contained in:
Jottyfan
2024-10-23 22:42:15 +02:00
parent ae9e2018a8
commit b5403ae20c
26 changed files with 198 additions and 155 deletions

View File

@@ -36,8 +36,8 @@
<td th:text="${#temporals.format(booker.bookingDate, 'dd.MM.yyyy')}"></td>
</tr>
<tr>
<th>Bestätigt</th>
<td th:text="${booker.accept == null ? '' : (booker.accept ? 'Ja' : 'abgelehnt')}"></td>
<th>Status</th>
<td th:text="${booker.progress}"></td>
</tr>
<tr>
<th>Freizeitpreis</th>

View File

@@ -18,7 +18,7 @@
<th>Freizeit</th>
<th>Rolle</th>
<th>Kontostand</th>
<th>Angemeldet</th>
<th>Status</th>
<th>Bestätigt</th>
</tr>
</thead>
@@ -48,7 +48,7 @@
</form>
</td>
<td class="middled" th:text="${#temporals.format(b.bookingDate, 'dd.MM.yyyy')}"></td>
<td class="middled" th:text="${b.accept == null ? '' : (b.accept ? 'Ja' : 'abgelehnt')}"></td>
<td class="middled" th:text="${b.progress}"></td>
</tr>
</th:block>
</tbody>

View File

@@ -63,7 +63,7 @@
<th>Geschlecht</th>
<th>Rolle</th>
<th>Kontostand</th>
<th>Angemeldet</th>
<th>Status</th>
<th>Bestätigt</th>
</tr>
</thead>
@@ -75,7 +75,7 @@
<td th:text="${b.role}"></td>
<td><span th:text="${#numbers.formatDecimal(b.paid, 1, 2) + ' €'}" th:if="${b.paid != null}"></span></td>
<td th:text="${#temporals.format(b.bookingDate, 'dd.MM.yyyy')}"></td>
<td th:text="${b.accept == null ? '' : (b.accept ? 'Ja' : 'abgelehnt')}"></td>
<td th:text="${b.progress}"></td>
</tr>
</th:block>
</tbody>