From e3f3c70481bfbaf86b54af922c61cee19a6f61a3 Mon Sep 17 00:00:00 2001 From: Liviu-Mihail Concioiu Date: Mon, 30 May 2022 00:55:14 +0200 Subject: [PATCH] Add links for user and database columns Signed-off-by: Liviu-Mihail Concioiu --- templates/server/status/processes/list.twig | 22 +++++++++++++++++++-- 1 file changed, 20 insertions(+), 2 deletions(-) diff --git a/templates/server/status/processes/list.twig b/templates/server/status/processes/list.twig index 4492f3b1a5..9a36b31485 100644 --- a/templates/server/status/processes/list.twig +++ b/templates/server/status/processes/list.twig @@ -45,11 +45,29 @@ {{ row.id }} - {{ row.user }} + + {% if row.user != 'system user' %} + + {{ row.user }} + + {% else %} + {{ row.user }} + {% endif %} + {{ row.host }} {% if row.db != '' %} - {{ row.db }} + + {{ row.db }} + {% else %} {% trans 'None' %} {% endif %}