mirror of
https://gitlab.com/Chill-Projet/chill-bundles.git
synced 2025-06-07 18:44:08 +00:00
26 lines
917 B
Twig
26 lines
917 B
Twig
{% extends "@ChillPerson/AccompanyingCourse/layout.html.twig" %}
|
|
|
|
{% set activeRouteKey = 'chill_activity_activity_list' %}
|
|
|
|
{% block title 'Update activity'|trans %}
|
|
|
|
{% block content %}
|
|
<div id="activity"></div> {# <=== vue component #}
|
|
{% include 'ChillActivityBundle:Activity:edit.html.twig' %}
|
|
{% endblock %}
|
|
|
|
{% block js %}
|
|
{{ encore_entry_link_tags('async_upload') }}
|
|
<script type="text/javascript">
|
|
chill.displayAlertWhenLeavingModifiedForm('form[name="{{ edit_form.vars.form.vars.name }}"]',
|
|
'{{ "You are going to leave a page with unsubmitted data. Are you sure you want to leave ?"|trans }}');
|
|
window.activity = {{ activity_json|json_encode|raw }};
|
|
</script>
|
|
{{ encore_entry_script_tags('vue_activity') }}
|
|
{% endblock %}
|
|
|
|
{% block css %}
|
|
{{ encore_entry_link_tags('async_upload') }}
|
|
{{ encore_entry_link_tags('vue_activity') }}
|
|
{% endblock %}
|