To extract the program detail information edX mobile team has to parse all the un-necassary details which takes time that ultimately slows down app.To avoid it,a detail fragment is created that will be used in the mobile app as well as on the web. LEARNER-2981
17 lines
508 B
HTML
17 lines
508 B
HTML
## Override the default styles_version to the Pattern Library version (version 2)
|
|
<%! main_css = "style-learner-dashboard" %>
|
|
|
|
<%page expression_filter="h"/>
|
|
<%inherit file="../main.html" />
|
|
<%!
|
|
from django.utils.translation import ugettext as _
|
|
from openedx.core.djangolib.markup import HTML
|
|
%>
|
|
|
|
<%block name="pagetitle">${_("Program Details")}</%block>
|
|
<%block name="bodyclass">program-details</%block>
|
|
|
|
<main id="main" aria-label="Content" tabindex="-1">
|
|
${HTML(program_fragment.body_html())}
|
|
</main>
|