mirror of
https://gitlab.com/Chill-Projet/chill-bundles.git
synced 2025-06-18 00:04:26 +00:00
21 lines
586 B
Twig
21 lines
586 B
Twig
{% extends 'ChillEventBundle::layout.html.twig' %}
|
|
|
|
{% set activeRouteKey = 'chill_event__event_show' %}
|
|
|
|
{% block title 'Delete event'|trans %}
|
|
|
|
{% block event_content %}
|
|
|
|
{{ include('@ChillMain/Util/confirmation_template.html.twig',
|
|
{
|
|
'title' : 'Delete event'|trans,
|
|
'confirm_question' : 'Are you sure you want to remove that event ?'|trans,
|
|
'cancel_route' : activeRouteKey,
|
|
'cancel_parameters' : { 'event_id' : event_id },
|
|
'form' : delete_form
|
|
}
|
|
) }}
|
|
|
|
{% endblock %}
|
|
|