## mako <%page expression_filter="h"/> <%namespace name='static' file='../static_content.html'/> <%! from django.utils.translation import ugettext as _ %> <%static:require_module_async module_name="course_experience/js/course_outline_factory" class_name="CourseOutlineFactory"> CourseOutlineFactory('.block-tree');
    % for section in blocks.get('children') or []:
  1. ${ section['display_name'] }
      % for subsection in section.get('children') or []:
    1. ${ subsection['display_name'] } ${ _("This is your last visited course section.") } % if subsection['current']: ${ _("Resume Course") } %endif
    2. % endfor
  2. % endfor