{% extends "base.html" %} {% load i18n %} {% load static_url %} {% comment %} Copyright 2010 Canonical Ltd. This software is licensed under the GNU Affero General Public License version 3 (see the file LICENSE). {% endcomment %} {% comment %} This module is based on code from Django OpenID. Please see the license file in thirdparty/django-openid. {% endcomment %} {% block title %}{% trans "Django OpenID Example Consumer" %}{% endblock %} {% block html_extra %}data-qa-id="consumer"{% endblock %} {% block qaid %}consumer{% endblock %} {% block bodyclass %}onecol{% endblock %} {% block text_title %}

{% trans "This is an example consumer" %}

{% endblock %} {% block menu %}{% endblock %} {% block content %}

It is embedded in the Ubuntu One provider framework for QA purposes only. You can see this page because you have TESTING=True in your settings.

{% if url %}

You authenticated as {{ url|escape }}

{% if sreg %} Simple Registration data returned:

{% else %} The server returned no Simple Registration data. {% endif %} {% if teams %} You are currently member of the following teams: {% else %} The server returned no teams data. {% endif %} {% if macaroon_attributes %} The server issued a discharge macaroon with the following attributes: {% else %} The server did not return a discharge macaroon. {% endif %}

{% endif %}
{% csrf_token %}

Mode:

Also request:

{% for field in sreg_fields %} {% for i in sreg_states %} {% endfor %} {% endfor %}
ReqOptNoField
{{ field.label|safe }}

Test logout

{% endblock %}