Add cancel reason form

This commit is contained in:
2024-12-16 19:08:42 +01:00
parent a0e0d600e6
commit 626a77b040
4 changed files with 89 additions and 4 deletions

View File

@@ -3,3 +3,20 @@
{% set activeRouteKey = 'chill_calendar_calendar_list' %}
{% block title 'chill_calendar.cancel_calendar_item'|trans %}
{% block content %}
{{ form_row(form.cancelReason) }}
<ul class="record_actions sticky-form-buttons">
<li class="save">
<a
class="btn btn-save"
href="{{ chill_return_path_or('chill_calendar_calendar_list', { 'id': person.id } )}}"
>
{{ 'Cancel'|trans|chill_return_path_label }}
</a>
</li>
</ul>
{% endblock %}