Skip to content
Merged

Fix #1004

Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 3 additions & 2 deletions lms/jinja2/lms/user_profile/_tab_account.html
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,8 @@
{% endif %}

{# Ссылка на курс #}
<a href class="{{ opacity }}">{{ enrollment.course }}</a>
<a href="{{ enrollment.course.build_absolute_uri(site=profile_user.site, is_secure=is_secure) }}" class="{{opacity}}">
{{ enrollment.course }} </a>

{# Иконки длительности курса #}
{% if enrollment.course.duration == CourseDurations.FIRST_HALF %}
Expand All @@ -40,7 +41,7 @@
{% endif %}

{# Информация об оценке #}
<i class="grade-info">
<i class="{{opacity}}">
{% if enrollment.is_grade_recredited %}перезачтено,{% endif %}
{{ enrollment.grade_honest|lower }}
</i>
Expand Down
Loading