{% import '@ChamiloTheme/Macros/box.html.twig' as macro %} {% autoescape false %} {% if not session is empty %}
{% for item in session %} {% set image %} {% if item.category %}
{{ item.category.name }}
{% endif %} {% endset %} {% set title %} {% if item.show_actions %}
{% endif %}
{{ item.title }}
{{ item.date }}
{{ item.num_users }} {{ item.num_courses }}
{#{% if item.description %}
{{ item.description }}
{% endif %}#} {% if item.coach_name %}
{{ item.coach_name }}
{% endif %} {% endset %} {% set content %} {% if item.student_info %} {% if (item.student_info.progress is not null) and (item.student_info.score is not null) %}
{% if (item.student_info.progress is not null) %} {{ "StudentCourseProgressX" | get_lang | format(item.student_info.progress) }} {% endif %} {% if (item.student_info.score is not null) %} {{ "StudentCourseScoreX" | get_lang | format(item.student_info.score) }} {% endif %} {% if (item.student_info.certificate is not null) %} {{ "StudentCourseCertificateX" | get_lang | format(item.student_info.certificate) }} {% endif %}
{% endif %} {% endif %} {% endset %}
{{ macro.box_session(item.id, title, content, image) }}
{% endfor %}
{% endif %} {% endautoescape %}