Enhancement to monitor pages.

This commit is contained in:
Matt Young 2025-10-19 08:20:34 -05:00
parent 1041d7c96b
commit 3fb3f8b3df
1 changed files with 4 additions and 4 deletions

View File

@ -34,17 +34,17 @@
@if($audition->prelimDefinition && ! $entry->hasFlag('no_show')) @if($audition->prelimDefinition && ! $entry->hasFlag('no_show'))
@if($entry->hasFlag('failed_prelim')) @if($entry->hasFlag('failed_prelim'))
<span <span
class="inline-flex items-center rounded-full bg-red-100 px-2 py-1 text-xs font-medium text-red-700 ">Failed</span> class="inline-flex items-center rounded-md bg-red-100 px-2 py-1 text-xs font-medium text-red-700 ">Failed</span>
@elseif($entry->hasFlag('passed_prelim')) @elseif($entry->hasFlag('passed_prelim'))
<span <span
class="inline-flex items-center rounded-full bg-green-100 px-2 py-1 text-xs font-medium text-green-700 ">Passed</span> class="inline-flex items-center rounded-md bg-green-100 px-2 py-1 text-xs font-medium text-green-700">Passed</span>
@else @else
<span <span
class="inline-flex items-center rounded-full bg-yellow-100 px-2 py-1 text-xs font-medium text-yellow-800 ">Pending</span> class="inline-flex items-center rounded-md bg-yellow-100 px-2 py-1 text-xs font-medium text-yellow-800 ">Pending</span>
@endif @endif
@elseif($entry->hasFlag('no_show')) @elseif($entry->hasFlag('no_show'))
<span <span
class="inline-flex items-center rounded-full bg-red-100 px-2 py-1 text-xs font-medium text-red-700 ">No-Show</span> class="inline-flex items-center rounded-md bg-red-100 px-2 py-1 text-xs font-medium text-red-700 ">No-Show</span>
@endif @endif
</x-table.td> </x-table.td>
@if($audition->prelimDefinition) @if($audition->prelimDefinition)