%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}
% endfor