From 1041d7c96b172be188bc1517d77a14d740a8704f Mon Sep 17 00:00:00 2001 From: Matt Young Date: Sun, 19 Oct 2025 08:14:01 -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 fcc9247..f96969d 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-full 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-full bg-green-100 px-2 py-1 text-xs font-medium text-green-700 ">Passed @else Pending + class="inline-flex items-center rounded-full 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-full bg-red-100 px-2 py-1 text-xs font-medium text-red-700 ">No-Show @endif @if($audition->prelimDefinition)