summaryrefslogtreecommitdiffstats
path: root/install/static/user.js
diff options
context:
space:
mode:
Diffstat (limited to 'install/static/user.js')
-rw-r--r--install/static/user.js14
1 files changed, 7 insertions, 7 deletions
diff --git a/install/static/user.js b/install/static/user.js
index 4ac0ba815..734f4d15d 100644
--- a/install/static/user.js
+++ b/install/static/user.js
@@ -72,23 +72,23 @@ function renderSimpleColumn(current,cell){
function renderUserLinks(current, cell){
link = document.createElement("a");
- link.href="#";
- link.innerHTML = "[Details]"
+ link.href="?tab=user&facet=details&pkey="+current.cn;
+ link.innerHTML = "[D]"
cell.appendChild(link);
link = document.createElement("a");
link.href="?tab=user&facet=group&pkey="+current.cn;
- link.innerHTML = "[Groups]"
+ link.innerHTML = "[G]"
cell.appendChild(link);
link = document.createElement("a");
- link.href="#";
- link.innerHTML = "[Netgroups]"
+ link.href="?tab=user&facet=netgroup&pkey="+current.cn;
+ link.innerHTML = "[N]"
cell.appendChild(link);
link = document.createElement("a");
- link.href="#";
- link.innerHTML = "[Roles]"
+ link.href="?tab=user&facet=role&pkey="+current.cn;
+ link.innerHTML = "[R]"
cell.appendChild(link);
}