diff --git a/openid_provider/templates/openid_provider/base.html b/openid_provider/templates/openid_provider/base.html index 55184e7..3c92587 100644 --- a/openid_provider/templates/openid_provider/base.html +++ b/openid_provider/templates/openid_provider/base.html @@ -41,7 +41,18 @@ {% if user.is_authenticated %}
{% endif %} diff --git a/openid_provider/templates/openid_provider/client_detail.html b/openid_provider/templates/openid_provider/client_detail.html new file mode 100644 index 0000000..c8c728f --- /dev/null +++ b/openid_provider/templates/openid_provider/client_detail.html @@ -0,0 +1,51 @@ +{% extends "openid_provider/base.html" %} + +{% load i18n %} + +{% block content %} + +User | +{{ object.user.email }} | +
---|---|
Client Type | +{{ object.client_type }} | +
Response Type | +{{ object.response_type }} | +
Redirect URIs | +{{ object.redirect_uris|join:', ' }} | +
Scopes | +{{ object.scope|join:', ' }} | +
{% trans 'Click on the client you want to see.' %}
{% trans "Thanks for spending some quality time with the Web site today." %}
+ +See you next time.
-