Show judges entries that are flagged as no-shows or failed prelims
This commit is contained in:
parent
d5a5dff21d
commit
8615c04735
|
|
@ -23,13 +23,19 @@
|
|||
</thead>
|
||||
<x-table.body>
|
||||
@foreach($entries as $entry)
|
||||
{{-- @continue($entry->hasFlag('no_show'))--}}
|
||||
<tr>
|
||||
<x-table.td>
|
||||
@if(! $published)
|
||||
@if(! $published && ! $entry->hasFlag('no_show'))
|
||||
<a href="{{ route('judging.entryScoreSheet',$entry) }}">
|
||||
@endif
|
||||
{{ $audition->name }} {{ $entry->draw_number }}
|
||||
@if(! $published)
|
||||
@if($entry->hasFlag('failed_prelim'))
|
||||
<p class="text-red-600">Failed Prelim</p>
|
||||
@elseif($entry->hasFlag('no_show'))
|
||||
<p class="text-red-600">No Show</p>
|
||||
@endif
|
||||
@if(! $published && ! $entry->hasFlag('no_show'))
|
||||
</a>
|
||||
@endif
|
||||
</x-table.td>
|
||||
|
|
|
|||
Loading…
Reference in New Issue