From 9280e8bff6237faf8c7d4d784aaad032bbb24d63 Mon Sep 17 00:00:00 2001 From: juanifioren Date: Thu, 15 Jan 2015 18:05:06 -0300 Subject: [PATCH] Clean authorize template. --- .../templates/openid_provider/authorize.html | 59 +++++++------------ 1 file changed, 20 insertions(+), 39 deletions(-) diff --git a/openid_provider/templates/openid_provider/authorize.html b/openid_provider/templates/openid_provider/authorize.html index e09b494..0e583df 100644 --- a/openid_provider/templates/openid_provider/authorize.html +++ b/openid_provider/templates/openid_provider/authorize.html @@ -1,47 +1,28 @@ -{% extends "base.html" %} +

Request for Permission

-{% load i18n %} +

Client {{ client.name }} would like to access this information of you ...

-{% block content %} +
+ + {% csrf_token %} -
-
-
-
-

Request for Permission

-
-
-

Client {{ client.name }} would like to access this information of you ...

- - {% csrf_token %} + + + + + - - - - - +
    + {% for scope in params.scope %} + {% if scope != 'openid' %} +
  • {{ scope | capfirst }}
  • + {% endif %} + {% endfor %} +
-
    - {% for scope in params.scope %} - {% if scope != 'openid' %} -
  • {{ scope | capfirst }}
  • - {% endif %} - {% endfor %} -
+ + -
-
- -
-
- -
-
- - -
-
-
-
+ {% endblock %} \ No newline at end of file