## mako <%page expression_filter="h"/> <%inherit file="/main.html" /> <%def name="online_help_token()"><% return "profile" %> <%namespace name='static' file='/static_content.html'/> <%! import json from django.core.urlresolvers import reverse from django.utils.translation import ugettext as _ from openedx.core.djangolib.js_utils import dump_js_escaped_json from openedx.core.djangolib.markup import HTML %> <%block name="pagetitle">${_("Learner Profile")} <%block name="bodyclass">view-profile <%block name="headextra"> <%static:css group='style-course'/>
% if own_profile:
${_("My Profile")}
${_('Build out your profile to personalize your identity on {platform_name}.').format( platform_name=platform_name, )}
% endif
<%block name="js_extra"> <%static:require_module module_name="learner_profile/js/learner_profile_factory" class_name="LearnerProfileFactory"> var options = ${data | n, dump_js_escaped_json}; LearnerProfileFactory(options);