{% extends "account/base.html" %} {% load i18n %} {% block head_title %}{% trans "OpenID Associations" %}{% endblock %} {% block body %}

{% trans "Manage OpenID Associations" %}

{% url acct_passwd_set as acct_passwd_set_url %} {% if not request.user.password %} {% blocktrans %}You have not set a password for this user account. You are unable to remove OpenID associations until you set a password.{% endblocktrans %} {% endif %} {% if openids %}

{% blocktrans with del_buttons|pluralize as buttons %}Your account is currently associated with the following OpenID {{ buttons }}:{% endblocktrans %}

{% for openid in openids %} {% endfor %}
{{ openid.openid }} {% trans "remove" %}
{% endif %}

{% trans "To associate a new OpenID with this account, sign in with it here:" %}

{% csrf_token %}
{% endblock %}