From 3fb3f8b3dff7483869c1158b27e5ce9dbc5c9921 Mon Sep 17 00:00:00 2001 From: Matt Young Date: Sun, 19 Oct 2025 08:20:34 -0500 Subject: [PATCH] Enhancement to monitor pages. --- resources/views/monitor/index.blade.php | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/resources/views/monitor/index.blade.php b/resources/views/monitor/index.blade.php index f96969d..2fc094e 100644 --- a/resources/views/monitor/index.blade.php +++ b/resources/views/monitor/index.blade.php @@ -34,17 +34,17 @@ @if($audition->prelimDefinition && ! $entry->hasFlag('no_show')) @if($entry->hasFlag('failed_prelim')) Failed + class="inline-flex items-center rounded-md bg-red-100 px-2 py-1 text-xs font-medium text-red-700 ">Failed @elseif($entry->hasFlag('passed_prelim')) Passed + class="inline-flex items-center rounded-md bg-green-100 px-2 py-1 text-xs font-medium text-green-700">Passed @else Pending + class="inline-flex items-center rounded-md bg-yellow-100 px-2 py-1 text-xs font-medium text-yellow-800 ">Pending @endif @elseif($entry->hasFlag('no_show')) No-Show + class="inline-flex items-center rounded-md bg-red-100 px-2 py-1 text-xs font-medium text-red-700 ">No-Show @endif @if($audition->prelimDefinition)