{% extends "sentry/bases/account.html" %} {% load crispy_forms_tags %} {% load i18n %} {% load sentry_helpers %} {% block title %}{% trans "Identities" %} | {{ block.super }}{% endblock %} {% block main %}
{% trans "Current Identities" %}
{% if not identity_list %}
{% trans "There are no identities associated with this account." %}
{% else %} {% for identity in identity_list %} {% endfor %}
{% trans "Identity" %}  
{{ identity.provider|title }}
{% csrf_token %}
{% endif %} {% if AUTH_PROVIDERS %}
Connect a New Account
{% endif %} {% endblock %}