Professional pathways are referred to as industry pathways in the code to help differentiate them from professional certificate programs.
26 lines
835 B
HTML
26 lines
835 B
HTML
## mako
|
|
|
|
<%page expression_filter="h"/>
|
|
<%namespace name='static' file='../static_content.html'/>
|
|
<%!
|
|
from openedx.core.djangolib.js_utils import (
|
|
dump_js_escaped_json, js_escaped_string
|
|
)
|
|
%>
|
|
|
|
<div class="js-program-details-wrapper program-details-wrapper"></div>
|
|
|
|
<%block name="js_extra">
|
|
<%static:webpack entry="ProgramDetailsFactory">
|
|
ProgramDetailsFactory({
|
|
programData: ${program_data | n, dump_js_escaped_json},
|
|
courseData: ${course_data | n, dump_js_escaped_json},
|
|
certificateData: ${certificate_data | n, dump_js_escaped_json},
|
|
urls: ${urls | n, dump_js_escaped_json},
|
|
userPreferences: ${user_preferences | n, dump_js_escaped_json},
|
|
industryPathways: ${industry_pathways | n, dump_js_escaped_json},
|
|
creditPathways: ${credit_pathways | n, dump_js_escaped_json},
|
|
});
|
|
</%static:webpack>
|
|
</%block>
|