@@ -72,12 +72,12 @@ from django.utils.translation import ugettext as _
<ul>
% if is_unit_page:
<liclass="action-item action-view nav-item">
<ahref="${published_preview_link}"class="button button-view action-button is-disabled"aria-disabled="true"rel="external"title="${_('Open the courseware in the LMS')}">
<ahref="${published_preview_link | h}"class="button button-view action-button is-disabled"aria-disabled="true"rel="external"title="${_('Open the courseware in the LMS')}">
<spanclass="action-button-text">${_("View Live Version")}</span>
</a>
</li>
<liclass="action-item action-preview nav-item">
<ahref="${draft_preview_link}"class="button button-preview action-button"rel="external"title="${_('Preview the courseware in the LMS')}">
<ahref="${draft_preview_link | h}"class="button button-preview action-button"rel="external"title="${_('Preview the courseware in the LMS')}">
@@ -110,10 +110,10 @@ from django.utils.translation import ugettext as _
% if xblock.category == 'split_test':
<divclass="bit">
<h3class="title-3">${_("Adding components")}</h3>
<p>${_("Select a component type under {em_start}Add New Component{em_end}. Then select a template.").format(em_start='<strong>', em_end="</strong>")}</p>
<p>${_("Select a component type under {em_start}Add New Component{em_end}. Then select a template.").format(em_start='<strong>', em_end="</strong>") | h}</p>
<p>${_("The new component is added at the bottom of the page or group. You can then edit and move the component.")}</p>
<p>${_("Drag components to new locations within this component.")}</p>
<p>${_("For content experiments, you can drag components to other groups.")}</p>
...
...
@@ -121,7 +121,7 @@ from django.utils.translation import ugettext as _
<p>${_("Confirm that you have properly configured content in each of your experiment groups.")}</p>
</div>
<divclass="bit external-help">
<ahref="${get_online_help_info(online_help_token())['doc_url']}"target="_blank"class="button external-help-button">${_("Learn more about component containers")}</a>
<ahref="${get_online_help_info(online_help_token())['doc_url'] | h}"target="_blank"class="button external-help-button">${_("Learn more about component containers")}</a>