diff --git a/lms/templates/fields/field_order_history.underscore b/lms/templates/fields/field_order_history.underscore index 5d1aed8233fe..bd22061e8365 100644 --- a/lms/templates/fields/field_order_history.underscore +++ b/lms/templates/fields/field_order_history.underscore @@ -1,7 +1,13 @@
role="group" aria-labelledby="order-title-<%- orderId %>" <% } else { %> aria-hidden="true" <% } %>> <%- gettext('Order Number') %>: <%- orderId %> <%- gettext('Date Placed') %>: <%- orderDate %> - <%- gettext('Cost') %>: <% if (!isNaN(parseFloat(totalPrice))) { %>$<% } %><%- totalPrice %> + + <%- gettext('Cost') %>: + <% if (!isNaN(parseFloat(totalPrice))) { %> + <%= currency.symbol %> + <% } %> + <%- totalPrice %> + <% if (receiptUrl) { %> <%- gettext('Order Details') %> <%- gettext('for') %> <%- orderId %> @@ -11,7 +17,13 @@
<%- gettext('Product Name') %>: <%- item.title %> <%- gettext('Date Placed') %>: <%- orderDate %> - <%- gettext('Cost') %>: <% if (!isNaN(parseFloat(item.line_price_excl_tax))) { %>$<% } %><%- item.line_price_excl_tax %> + + <%- gettext('Cost') %>: + <% if (!isNaN(parseFloat(item.line_price_excl_tax))) { %> + <%= currency.symbol %> + <% } %> + <%- item.line_price_excl_tax %> +
<% }); %>
diff --git a/lms/templates/student_account/login.underscore b/lms/templates/student_account/login.underscore index 0a2672e78974..cff5c35ab398 100644 --- a/lms/templates/student_account/login.underscore +++ b/lms/templates/student_account/login.underscore @@ -16,7 +16,7 @@

<%- gettext("Sign in to continue learning") %>

<% } %>

- <%- gettext("You already have an edX account with your {enterprise_name} email address.").replace(/{enterprise_name}/g, context.enterpriseName) %> + <%- gettext("You already have an EliteMBA account with your {enterprise_name} email address.").replace(/{enterprise_name}/g, context.enterpriseName) %> <% if (context.syncLearnerProfileData) { %><%- gettext("Going forward, your account information will be updated and maintained by {enterprise_name}.").replace(/{enterprise_name}/g, context.enterpriseName) %> <% } %> @@ -27,7 +27,7 @@

<%- gettext("Sign In") %>

<% } %> -
+

<% if ( context.providers.length > 0 && !context.currentProvider || context.hasSecondaryProviders ) { %>