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 = ( ''