{% extends "base.html" %} {% load i18n %} {% block title %} {% trans "Manage OpenID" %} {% endblock %} {% load breadcrumbs %} {% block breadcrumbs %} {{ block.super }} {% breadcrumb_url 'Manage OpenID' 'manage_id' %} {% endblock %} {% block content %} {% if message %} {% endif %}

{% if nb_openids > 0 %} Manage your trusted site

{% trans "Your current OpenID" %}

Choose your identities to remove, be careful this will remove all the trusted site for these identities. You can change your default OpenID by clicking on "Make Default"

{% csrf_token %} {% for key,value in openids.items %}

{{ uri }}{{ oipath }}/{{ value.caption }}/ {% if value.Default %} (Default) {% endif %}

{% for key2, value2 in value.trustroot.items %}
  • {{ value2 }}
  • {% empty %} There is no trusted site for this identity. {% endfor %} {% if not value.Default %} {% endif %}

    {% endfor %}
    {% else %}

    You have no OpenID account for the moment

    {% endif %}
    {% trans "Add a new OpenID identity" %}

    {% csrf_token %}

    Leave blank to create an anonymous OpenID

    {{ uri }}{{ oipath }}/{{ form.openid }}/ {{ form.Default }} Check if you want this OpenID account become your default OpenID account.

    {% endblock %}