feat: show booking status in sidebar

This commit is contained in:
Björn Fromme
2026-03-16 12:03:00 +01:00
parent c7b70dbd56
commit acb599b760
+10
View File
@@ -56,6 +56,16 @@
{{ summaryData.participantCount }} {{ summaryData.participantCount }}
</td> </td>
</tr> </tr>
{% if bookingCreateDto.bookingStatus != 'F' %}
<tr>
<th class="text-left align-top border-r-2 border-gray-300 pr-2">
Status
</th>
<td class="pl-2">
{{ bookingCreateDto.bookingStatus|map_status }}
</td>
</tr>
{% endif %}
</table> </table>
</div> </div>