{{ "Calendar"|trans }}

{{ 'main user concerned'|trans }}
{{ entity.mainUser }}

{{ 'Concerned groups'|trans }}

{% include 'ChillActivityBundle:Activity:concernedGroups.html.twig' with {'context': context, 'with_display': 'bloc' } %}

{{ 'Calendar data'|trans }}

{{ 'start date'|trans }}
{{ entity.startDate|format_datetime('long') }}
{{ 'end date'|trans }}
{{ entity.endDate|format_datetime('long') }}
{{ 'cancel reason'|trans }}
{% if entity.cancelReason is not null %} {{ entity.cancelReason.canceledBy|localize_translatable_string }} {% else %} {{ 'Unknown'|trans }} {% endif %}
{{ 'status'|trans }}
{{ entity.status }}
{% if not entity.comment.isEmpty %}
{{ 'calendar comment'|trans }}
{{ entity.comment|chill_entity_render_box }}
{% endif %}
{{ 'sendSMS'|trans }}
{% if entity.sendSMS is not null %} {% if entity.sendSMS %}{{ 'Yes'|trans }}{% else %}{{ 'No'|trans }}{% endif %} {% else %} {{ 'Unknown'|trans }} {% endif %}
{% set accompanying_course_id = null %} {% if accompanyingCourse %} {% set accompanying_course_id = accompanyingCourse.id %} {% endif %}