From e07815d13573e597c8bca3266eabe0ff249bb35c Mon Sep 17 00:00:00 2001 From: Matthew Grotke Date: Tue, 26 May 2026 00:35:25 -0400 Subject: [PATCH] Development --- docker/routlin-dash/app/view_page.py | 11 +++++++++-- 1 file changed, 9 insertions(+), 2 deletions(-) diff --git a/docker/routlin-dash/app/view_page.py b/docker/routlin-dash/app/view_page.py index ab5acf6..4fa8c60 100644 --- a/docker/routlin-dash/app/view_page.py +++ b/docker/routlin-dash/app/view_page.py @@ -601,11 +601,18 @@ def collect_tokens(): rows = '' for cmd, entries in groups.items(): users = ', '.join(sorted({u for _, u in entries if u and u != 'unknown'})) - required_by = ', '.join(_uuid for _uuid, _ in entries) + req_tags = ''.join( + f'' + f'{_uuid[:8]}' + f'{_uuid[:8]}' + f'{_uuid[:8]}' + f'' + for _uuid, _ in entries + ) rows += (f'' f'{e(cmd)}' f'{e(users)}' - f'{e(required_by)}' + f'
{req_tags}
' f'') pending_html = ( ''