<%page expression_filter="h"/> <%! from django.utils.translation import ugettext as _ from third_party_auth import pipeline %>
  • ## Translators: this section lists all the third-party authentication providers (for example, Google and LinkedIn) the user can link with or unlink from their edX account. ${_("Connected Accounts")} % for state in provider_user_states:
    % if state.has_account: ${_('Linked')} % else: ${_('Not Linked')} % endif
    ${state.provider.name}
    % if state.has_account: % elif state.provider.accepts_logins: ## Translators: clicking on this creates a link between a user's edX account and their account with an external authentication provider (like Google or LinkedIn). ${_("Link")} % endif
    % endfor