Files
Xes 73154ae174
Behat tests 1.11.x 🐞 / PHP 7.4 Test on ubuntu-latest (push) Canceled after 0s
PHP-CS-Fixer / composer_install (7.4) (push) Canceled after 0s
Chamilo 1.11.40 (ZIP oficial v1.11.40)
Fuente: https://github.com/chamilo/chamilo-lms/releases/download/v1.11.40/chamilo-1.11.40.zip
sha256: 1cf4bf2cc7bae1ef1a1eff643235db1d552f78ddf4b6dd1e2d2dac9868679439
Snapshot independiente (rama huerfana); diffable vs 1.11.38. vendor incluido.
2026-08-06 17:59:45 +02:00

35 lines
2.0 KiB
Smarty

{% if student_info %}
{% if not student_info.progress is null or not student_info.score is null or not student_info.certificate is null %}
{% set num_columns = (student_info.progress is null ? 0 : 1) + (student_info.score is null ? 0 : 1) + (student_info.certificate is null ? 0 : 1) %}
<div class="course-student-info">
<div class="student-info">
<hr>
<div class="row">
{% if not student_info.progress is null %}
<div class="{{ num_columns == 1 ? 'col-xs-12' : (num_columns == 2 ? 'col-xs-9' : 'col-xs-6') }}">
<strong>{{ 'CourseAdvance'|get_lang }}</strong>
<div class="progress">
<div class="progress-bar progress-bar-success" role="progressbar"
aria-valuenow="{{ student_info.progress }}" aria-valuemin="0" aria-valuemax="100"
style="width: {{ student_info.progress }}%;">
{{ 'XPercentCompleted'|get_lang|format(student_info.progress) }}
</div>
</div>
</div>
{% endif %}
{% if not student_info.score is null %}
<div class="col-xs-3">
<div>{{ "StudentCourseScoreX" | get_lang | format(student_info.score) }}</div>
</div>
{% endif %}
{% if not student_info.certificate is null %}
<div class="col-xs-3">
<i class="fa fa-certificate text-warning" aria-hidden="true"></i>
{{ "StudentCourseCertificateX" | get_lang | format(student_info.certificate) }}
</div>
{% endif %}
</div>
</div>
</div>
{% endif %}
{% endif %}