From c42708db75e35625620dbe49c2e83400e7d0bc46 Mon Sep 17 00:00:00 2001 From: Khalid MOUTAOUAKIL Date: Mon, 6 Apr 2026 17:13:39 +0200 Subject: [PATCH] Processus: restart_hint et cmdline affiches en entier, plus de troncature Co-Authored-By: Claude Opus 4.6 (1M context) --- app/templates/audit_full_detail.html | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/app/templates/audit_full_detail.html b/app/templates/audit_full_detail.html index 4d1d0c6..481ad64 100644 --- a/app/templates/audit_full_detail.html +++ b/app/templates/audit_full_detail.html @@ -55,10 +55,10 @@ {% for p in processes %} {{ p.pid }} {{ p.user }} - {{ (p.exe or '')[:40] }} - {{ (p.cwd or '')[:30] }} - {{ (p.cmdline or '')[:60] }} - {{ (p.restart_hint or '')[:60] }} + {{ p.exe or '' }} + {{ p.cwd or '' }} + {{ p.cmdline or '' }} + {{ p.restart_hint or '' }} {% endfor %}