From 14c9b4983e140441629da884ecfd60b61442e2bb Mon Sep 17 00:00:00 2001 From: Matthew Grotke Date: Tue, 26 May 2026 01:29:35 -0400 Subject: [PATCH] Development --- docker/routlin-dash/app/view_page.py | 22 +++++++++++++--------- 1 file changed, 13 insertions(+), 9 deletions(-) diff --git a/docker/routlin-dash/app/view_page.py b/docker/routlin-dash/app/view_page.py index 3cf2e57..87be6a0 100644 --- a/docker/routlin-dash/app/view_page.py +++ b/docker/routlin-dash/app/view_page.py @@ -601,18 +601,22 @@ def collect_tokens(): rows = '' for cmd, entries in groups.items(): users = ', '.join(sorted({u for _, u in entries if u and u != 'unknown'})) - req_tags = ''.join( - f'' - f'{_uuid[:8]}' - f'{_uuid[:8]}' - f'{_uuid[:8]}' - f'' - for _uuid, _ in entries - ) + if cmd == 'fix problems': + req_cell = '-' + else: + req_tags = ''.join( + f'' + f'{_uuid[:8]}' + f'{_uuid[:8]}' + f'{_uuid[:8]}' + f'' + for _uuid, _ in entries + ) + req_cell = f'
{req_tags}
' rows += (f'' f'{e(cmd)}' f'{e(users)}' - f'
{req_tags}
' + f'{req_cell}' f'') pending_html = ( ''