123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110 |
- {% import '@ChamiloTheme/Macros/box.html.twig' as macro %}
- {% autoescape false %}
- {% if not courses is empty %}
- <div class="grid-course">
- {% for item in courses %}
- {% set image %}
- {% if item.category %}
- <div class="category" style="background: {{ item.color.color }}; color:{{ item.color.luminosity }}">
- {{ item.category }}
- </div>
- {% endif %}
- {% if item.visibility == constant('COURSE_VISIBILITY_CLOSED') and not item.current_user_is_teacher %}
- {% if item.image != '' %}
- <img src="{{ item.image }}" title="{{ item.title }}"
- alt="{{ item.title }}" class="img-fluid"/>
- {% else %}
- {{ 'blackboard.png' | img(48, item.title ) }}
- {% endif %}
- {% else %}
- <a href="{{ item.link }}">
- {% if item.image != '' %}
- <img src="{{ item.image }}" title="{{ item.title }}"
- alt="{{ item.title }}" class="img-fluid"/>
- {% else %}
- {{ 'blackboard.png' | img(48, item.title ) }}
- {% endif %}
- </a>
- {% endif %}
- {% endset %}
- {% set title %}
- {% if item.edit_actions != '' %}
- <div class="float-right">
- {% if item.document == '' %}
- <a class="btn btn-outline-primary btn-sm" href="{{ item.edit_actions }}">
- <i class="fas fa-pencil-alt"></i>
- </a>
- {% else %}
- <div class="btn-group" role="group">
- <a class="btn btn-outline-primary btn-sm" href="{{ item.edit_actions }}">
- <i class="fas fa-pencil-alt"></i>
- </a>
- {{ item.document }}
- </div>
- {% endif %}
- </div>
- {% endif %}
- <h5 class="title mt-2">
- {% if item.visibility == constant('COURSE_VISIBILITY_CLOSED') and not item.current_user_is_teacher %}
- {{ item.title }} {{ item.code_course }}
- {% else %}
- <a href="{{ item.link }}">
- {{ item.title }} {{ item.code_course }}
- </a>
- {{ item.notifications }}
- {% if item.is_special_course %}
- {{ 'klipper.png' | img(22, 'CourseAutoRegister'|get_lang ) }}
- {% endif %}
- {% endif %}
- </h5>
- {% endset %}
- {% set content %}
- <div class="list-teachers">
- {% if item.teachers|length > 0 %}
- <i class="fas fa-user-tie"></i>
- {% for teacher in item.teachers %}
- {% set counter = counter + 1 %}
- {% if counter > 1 %} | {% endif %}
- <a href="{{ teacher.url }}" class="ajax"
- data-title="{{ teacher.firstname }} {{ teacher.lastname }}">
- {{ teacher.firstname }} {{ teacher.lastname }}
- </a>
- {% endfor %}
- {% endif %}
- </div>
- <div class="student-progress">
- {% if item.student_info %}
- {% if (item.student_info.progress is not null) and (item.student_info.score is not null) %}
- <div class="course-student-info">
- <div class="student-info">
- {% 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 %}
- </div>
- </div>
- {% endif %}
- {% endif %}
- </div>
- {% endset %}
- <div class="item-course">
- {{ macro.box_course_classic(item.course_id, title, content, image, item.is_special_course) }}
- </div>
- {% endfor %}
- </div>
- {% endif %}
- {% endautoescape %}
|