<%namespace file="/base/social_buttons.html" import="render_social_buttons"/>

${_('Oauth Identities')}

${_('External services currently connected with your Rhodecode user')}.

% if not c.social_plugins: ${_('No social authentication plugins are enabled by administrator')}. %endif ${render_social_buttons(c.social_plugins)}

% if c.user_oauth_tokens: % for token in c.user_oauth_tokens: % endfor
Provider
${token.provider_name} ${h.secure_form(url('my_account_oauth', provider_name=token.provider_name, external_id=token.external_id), method='delete')} ${h.end_form()}
% else:

${_('You have no accounts linked yet')}.

% endif