mirror of
https://gitlab.com/Chill-Projet/chill-bundles.git
synced 2025-06-07 18:44:08 +00:00
29 lines
663 B
Twig
29 lines
663 B
Twig
{% extends '@ChillPerson/AccompanyingCourse/layout.html.twig' %}
|
|
|
|
{% block title 'accompanying_course_work.Edit accompanying course work'|trans %}
|
|
|
|
|
|
{% block content %}
|
|
<div class="accompanying_course_work-edit">
|
|
|
|
<h1>{{ block('title') }}</h1>
|
|
|
|
<div id="accompanying_course_work_edit"></div>
|
|
|
|
</div>
|
|
{% endblock %}
|
|
|
|
{% block js %}
|
|
{{ parent() }}
|
|
<script type="text/javascript">
|
|
window.accompanyingCourseWork = {{ json|json_encode|raw }};
|
|
</script>
|
|
|
|
{{ encore_entry_script_tags('vue_accourse_work_edit') }}
|
|
{% endblock %}
|
|
|
|
{% block css %}
|
|
{{ parent() }}
|
|
{{ encore_entry_link_tags('vue_accourse_work_edit') }}
|
|
{% endblock %}
|