feat: show booking status in sidebar

This commit is contained in:
Björn Fromme
2026-02-14 16:04:54 +01:00
parent abeb91b59f
commit a339f8a517
+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>