From 0195794204fda6c21138dae6cdbeb7bb3ba0349c Mon Sep 17 00:00:00 2001 From: Ciro Scognamiglio Date: Mon, 15 Sep 2014 18:04:27 +0200 Subject: [PATCH] management requests table reorganization --- portal/static/css/onelab.css | 10 ++++++++++ portal/templates/management-tab-requests.html | 14 ++++++++++++-- 2 files changed, 22 insertions(+), 2 deletions(-) diff --git a/portal/static/css/onelab.css b/portal/static/css/onelab.css index 8c359417..d64c5434 100644 --- a/portal/static/css/onelab.css +++ b/portal/static/css/onelab.css @@ -62,6 +62,16 @@ span.subtitle { font-weight:normal; text-transform:uppercase; } +span.small { + font-size:9pt; +} +span.gray { + color:gray; +} +span.type { + color:#201E62; + font-weight:bold; +} span.htitle { color:#454545; font-size:9pt; diff --git a/portal/templates/management-tab-requests.html b/portal/templates/management-tab-requests.html index ea2c21a1..ba85ba68 100644 --- a/portal/templates/management-tab-requests.html +++ b/portal/templates/management-tab-requests.html @@ -82,6 +82,7 @@ } +

From your authorities

@@ -90,8 +91,14 @@ {% for authority, requests in my_authorities.items %} {% for request in requests %} - - + + {% if request.type == 'user' %} + + {% elif request.type == 'slice' %} + + {% else %} + + {% endif %} {{ request.id }} {% if request.allowed == 'allowed' %} @@ -127,6 +134,9 @@ There is no pending request waiting for validation.
{% endif %} + + +

From your sub-authorities

-- 2.43.0