mirror of
https://gitlab.com/Chill-Projet/chill-bundles.git
synced 2025-09-24 23:55:02 +00:00
BREAKING CHANGE: avoid using the macro for download button. To keep the UI clean, use always the new "group of action buttons".
32 lines
1001 B
Twig
32 lines
1001 B
Twig
{% extends "@ChillPerson/AccompanyingCourse/layout.html.twig" %}
|
|
|
|
{% set activeRouteKey = 'chill_activity_activity_list' %}
|
|
|
|
{% block title 'Show the activity'|trans %}
|
|
|
|
{% block js %}
|
|
{{ parent() }}
|
|
{{ encore_entry_script_tags('mod_notification_toggle_read_status') }}
|
|
{{ encore_entry_script_tags('mod_async_upload') }}
|
|
{{ encore_entry_script_tags('mod_document_action_buttons_group') }}
|
|
{% endblock %}
|
|
|
|
{% block css %}
|
|
{{ parent() }}
|
|
{{ encore_entry_link_tags('mod_notification_toggle_read_status') }}
|
|
{{ encore_entry_link_tags('mod_async_upload') }}
|
|
{{ encore_entry_link_tags('mod_document_action_buttons_group') }}
|
|
{% endblock %}
|
|
|
|
{% import 'ChillActivityBundle:ActivityReason:macro.html.twig' as m %}
|
|
|
|
{% block content -%}
|
|
<div class="activity-show">
|
|
{% include 'ChillActivityBundle:Activity:show.html.twig' with {'context': 'accompanyingCourse'} %}
|
|
</div>
|
|
{% endblock content %}
|
|
|
|
{% block block_post_menu %}
|
|
<div class="post-menu pt-4"></div>
|
|
{% endblock %}
|