mirror of
https://gitlab.com/Chill-Projet/chill-bundles.git
synced 2025-10-01 10:59:45 +00:00
16 lines
475 B
Twig
16 lines
475 B
Twig
{% extends "@ChillPerson/AccompanyingCourse/layout.html.twig" %}
|
|
|
|
{% set activeRouteKey = 'chill_calendar_calendar_list' %}
|
|
|
|
{% block title 'Calendar'|trans %}
|
|
|
|
{% block content -%}
|
|
<div class="calendar-show">
|
|
<div class="row justify-content-center">
|
|
<div class="col-md-10 col-xxl">
|
|
{% include 'ChillCalendarBundle:Calendar:show.html.twig' with {'context': 'accompanyingCourse'} %}
|
|
</div>
|
|
</div>
|
|
</div>
|
|
{% endblock content %}
|