mirror of
https://gitlab.com/Chill-Projet/chill-bundles.git
synced 2025-08-21 15:13:50 +00:00
19 lines
743 B
Twig
19 lines
743 B
Twig
{% extends '@ChillPerson/AccompanyingCourse/layout.html.twig' %}
|
|
|
|
{% block title %}{{ 'Delete accompanying period'|trans }}{% endblock %}
|
|
|
|
|
|
{% block content %}
|
|
|
|
{% include '@ChillPerson/AccompanyingCourse/_confirm_delete.html.twig' %}
|
|
|
|
{{ include('@ChillMain/Util/confirmation_template.html.twig',
|
|
{
|
|
'title' : 'Delete accompanying period'|trans,
|
|
'confirm_question' : 'Are you sure you want to remove the accompanying period "%id%" ?'|trans({ '%id%' : accompanyingCourse.id } ),
|
|
'cancel_route' : 'chill_person_accompanying_period_list',
|
|
'cancel_parameters' : {'person_id' : person_id},
|
|
'form' : delete_form
|
|
} ) }}
|
|
{% endblock %}
|