{% extends "@ChillPerson/AccompanyingCourse/layout.html.twig" %} {% set activeRouteKey = '' %} {% import "@ChillDocStore/Macro/macro.html.twig" as m %} {% block title %} {{ 'Documents' }} {% endblock %} {% block js %} {{ encore_entry_script_tags('mod_async_upload') }} {% endblock %} {% block content %}

{{ 'Documents' }}

{% for document in documents %} {# #} {% else %} {% endfor %}
{{ 'Title' | trans }} {{ 'Category'|trans }} {{ 'Circle' | trans }} {{ 'Actions' | trans }}
{{ document.title }} {{ document.category.name|localize_translatable_string }}{{ document.scope.name|localize_translatable_string }}
    {% if is_granted('CHILL_ACCOMPANYING_COURSE_DOCUMENT_SEE_DETAILS', document) %}
  • {{ m.download_button(document.object, document.title) }}
  • {% endif %} {% if is_granted('CHILL_ACCOMPANYING_COURSE_DOCUMENT_UPDATE', document) %}
  • {% endif %}
{{ 'Any document found'|trans }}
{# {% if is_granted('CHILL_ACCOMPANYING_COURSE_DOCUMENT_CREATE', accompanyingCourse) %} #} {# {% endif %} #} {% endblock %}