Skip to content
Snippets Groups Projects
Commit 9219cbdc authored by Renzo Lucioni's avatar Renzo Lucioni
Browse files

Fix 3rd party auth string interpolation, address design feedback

parent 93a263b9
No related merge requests found
......@@ -884,12 +884,13 @@ def login_user(request, error=""): # pylint: disable-msg=too-many-statements,un
u'Login failed - user with username {username} has no social auth with backend_name {backend_name}'.format(
username=username, backend_name=backend_name))
return HttpResponseBadRequest(
_("You've successfully logged into your {provider_name} account, but this account "
"isn't linked with an {platform_name} account yet. Use your {platform_name} username and "
"password to log into {platform_name} below, and then link your {platform_name} account with "
"{provider_name} from your dashboard.") + "<br/><br/>" + _("If you don't have an {platform_name} "
"account yet, click <strong>Register Now</strong> at the top of the page.").format(
platform_name=settings.PLATFORM_NAME, provider_name=requested_provider.NAME),
_("You've successfully logged into your {provider_name} account, but this account isn't linked with an {platform_name} account yet.").format(
platform_name=settings.PLATFORM_NAME, provider_name=requested_provider.NAME)
+ "<br/><br/>" + _("Use your {platform_name} username and password to log into {platform_name} below, "
"and then link your {platform_name} account with {provider_name} from your dashboard.").format(
platform_name=settings.PLATFORM_NAME, provider_name=requested_provider.NAME)
+ "<br/><br/>" + _("If you don't have an {platform_name} account yet, click <strong>Register Now</strong> at the top of the page.").format(
platform_name=settings.PLATFORM_NAME),
content_type="text/plain",
status=401
)
......
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment