From 79a6cf5c6cd889f3fb9f25b0f72364318e83688e Mon Sep 17 00:00:00 2001 From: Sebastian Henschel Date: Thu, 30 Mar 2017 13:45:35 +0200 Subject: [PATCH] Added provider and provider_id on users detail --- apimanager/users/static/users/css/users.css | 4 ++++ apimanager/users/templates/users/detail.html | 11 +++++++++++ 2 files changed, 15 insertions(+) diff --git a/apimanager/users/static/users/css/users.css b/apimanager/users/static/users/css/users.css index 62cbb5c..e0af802 100644 --- a/apimanager/users/static/users/css/users.css +++ b/apimanager/users/static/users/css/users.css @@ -1,3 +1,7 @@ #users #users-list { margin-top: 20px; } + +#users-detail div { + margin: 5px 0; +} diff --git a/apimanager/users/templates/users/detail.html b/apimanager/users/templates/users/detail.html index 025e940..d5a4545 100644 --- a/apimanager/users/templates/users/detail.html +++ b/apimanager/users/templates/users/detail.html @@ -17,6 +17,17 @@ {{ apiuser.email }} +
+ Provider
+ {{ apiuser.provider }} +
+ +
+ Provider ID
+ {{ apiuser.provider_id }} +
+ + {% if apiuser.user_id %}

Add Entitlement