mirror of
https://gitlab.com/Chill-Projet/chill-bundles.git
synced 2025-06-07 18:44:08 +00:00
18 lines
469 B
Twig
18 lines
469 B
Twig
{% extends 'ChillPersonBundle:AccompanyingCourse:layout.html.twig' %}
|
|
|
|
{% block title %}
|
|
{{ 'Edit Accompanying Course'|trans }}
|
|
{% endblock %}
|
|
|
|
{% block content %}
|
|
<h1>{{ block('title') }}</h1>
|
|
<div id="accompanying-course"></div>
|
|
{% endblock %}
|
|
|
|
{% block js %}
|
|
<script type="text/javascript">
|
|
window.accompanyingCourseId = {{ accompanyingCourse.id|e('js') }};
|
|
</script>
|
|
{{ encore_entry_script_tags('accompanying_course') }}
|
|
{% endblock %}
|