diff --git a/lms/templates/provider/authorize.html b/lms/templates/provider/authorize.html index f3ab459b67..6181de9725 100644 --- a/lms/templates/provider/authorize.html +++ b/lms/templates/provider/authorize.html @@ -1,9 +1,12 @@ ## mako +<%page expression_filter="h"/> + <%! from django.utils.translation import ugettext as _ from provider.templatetags.scope import scopes from django.core.urlresolvers import reverse +from openedx.core.djangolib.markup import Text, HTML %> <%inherit file="../main.html"/> @@ -14,9 +17,11 @@ from django.core.urlresolvers import reverse
% if not error:

- ${_("\n {application_name} would like to access your data with the following permissions:\n ".format( - application_name=client.name - ))} + ${Text(_("{start_strong}{application_name}{end_strong} would like to access your data with the following permissions:")).format( + start_strong=HTML(""), + application_name=client.name, + end_strong=HTML("") + )}