Files
edx-platform/lms/templates/courseware/welcome-back.html
2023-08-16 17:07:23 +05:00

15 lines
505 B
HTML

<%page expression_filter="h"/>
<%!
from django.utils.translation import gettext as _
from openedx.core.djangolib.markup import HTML, Text
%>
<h2>${chapter_module.display_name_with_default}</h2>
<p>${Text(_("You were most recently in {section_link}. If you're done with that, choose another section on the left.")).format(
section_link=HTML('<a href="{url}">{section_name}</a>').format(
url=prev_section_url,
section_name=prev_section.display_name_with_default,
)
)}</p>