mirror of
https://gitlab.com/Chill-Projet/chill-bundles.git
synced 2025-06-25 11:36:13 +00:00
30 lines
788 B
Twig
30 lines
788 B
Twig
{% extends "@ChillPerson/Person/layout.html.twig" %}
|
|
|
|
{% set activeRouteKey = 'chill_calendar_calendar_list' %}
|
|
|
|
{% block title 'chill_calendar.cancel_calendar_item'|trans %}
|
|
|
|
{% block content %}
|
|
|
|
{{ form_start(form) }}
|
|
|
|
{{ form_row(form.cancelReason) }}
|
|
|
|
<ul class="record_actions sticky-form-buttons">
|
|
<li class="save">
|
|
<a
|
|
class="btn btn-cancel"
|
|
href="{{ chill_return_path_or('chill_calendar_calendar_list', { 'id': person.id } )}}"
|
|
>
|
|
{{ 'Cancel'|trans|chill_return_path_label }}
|
|
</a>
|
|
</li>
|
|
<li>
|
|
{{ form_widget(form.submit, { 'attr' : { 'class': 'btn btn-save' }, 'label': 'Save' } ) }}
|
|
</li>
|
|
</ul>
|
|
|
|
{{ form_end(form) }}
|
|
|
|
{% endblock %}
|