diff --git a/lms/templates/seq_module.html b/lms/templates/seq_module.html index 065729ec37..cf8e5c61bd 100644 --- a/lms/templates/seq_module.html +++ b/lms/templates/seq_module.html @@ -61,6 +61,9 @@ style="color:green" aria-hidden="true" > + % if item['complete']: + ${_("Completed")} + %endif % endif
${item['type']} ${item['page_title']} ${_("Bookmarked") if item['bookmarked'] else ""}
diff --git a/openedx/features/course_experience/templates/course_experience/course-outline-fragment.html b/openedx/features/course_experience/templates/course_experience/course-outline-fragment.html index ea394d7ec4..61be2fd1b2 100644 --- a/openedx/features/course_experience/templates/course_experience/course-outline-fragment.html +++ b/openedx/features/course_experience/templates/course_experience/course-outline-fragment.html @@ -40,7 +40,8 @@ self_paced = context.get('self_paced', False)

${ section['display_name'] }

% if section.get('complete'): - + + ${_("Completed")} % endif
    % if subsection.get('complete'): - + + ${_("Completed")} % endif % endif
    @@ -173,7 +175,9 @@ self_paced = context.get('self_paced', False)
    % if vertical.get('complete'): - + + ${_("Completed")} + % endif