{% extends "@ChillPerson/AccompanyingCourse/layout.html.twig" %} {% set activeRouteKey = '' %} {% block title %} {{ 'Documents' }} {% endblock %} {% block js %} {{ parent() }} {{ encore_entry_script_tags('mod_async_upload') }} {{ encore_entry_script_tags('mod_docgen_picktemplate') }} {{ encore_entry_script_tags('mod_entity_workflow_pick') }} {% endblock %} {% block css %} {{ parent() }} {{ encore_entry_link_tags('mod_async_upload') }} {{ encore_entry_link_tags('mod_docgen_picktemplate') }} {{ encore_entry_link_tags('mod_entity_workflow_pick') }} {% endblock %} {% block content %}

{{ 'Documents' }}

{% if documents|length == 0 %}

{{ 'No documents'|trans }}

{% else %}
{% for document in documents %} {% include 'ChillDocStoreBundle:List:list_item.html.twig' %} {% endfor %}
{% endif %} {{ chill_pagination(pagination) }}
{% if is_granted('CHILL_ACCOMPANYING_COURSE_DOCUMENT_CREATE', accompanyingCourse) %} {% endif %}
{% endblock %}