From c539e85fd2cd01a9fb7521e985863889e355f632 Mon Sep 17 00:00:00 2001 From: Cayo Puigdefabregas Date: Thu, 19 Oct 2023 10:29:12 +0200 Subject: [PATCH] add roles info in user roles page --- idhub/templates/idhub/user/roles.html | 26 ++++++++++++++++++++++++++ 1 file changed, 26 insertions(+) diff --git a/idhub/templates/idhub/user/roles.html b/idhub/templates/idhub/user/roles.html index d6520a0..e439a01 100644 --- a/idhub/templates/idhub/user/roles.html +++ b/idhub/templates/idhub/user/roles.html @@ -2,4 +2,30 @@ {% load i18n %} {% block content %} +
+
+
+ + + + + + + + + + {% for rol in user.roles.all %} + + + + + + {% endfor %} + +
{{ rol.service.rol.name }}{{ rol.service.description }}{{ rol.service.domain }}
+
+
+
+ + {% endblock %}