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>
|
</thead>
|
||||||
<x-table.body>
|
<x-table.body>
|
||||||
@foreach($entries as $entry)
|
@foreach($entries as $entry)
|
||||||
|
{{-- @continue($entry->hasFlag('no_show'))--}}
|
||||||
<tr>
|
<tr>
|
||||||
<x-table.td>
|
<x-table.td>
|
||||||
@if(! $published)
|
@if(! $published && ! $entry->hasFlag('no_show'))
|
||||||
<a href="{{ route('judging.entryScoreSheet',$entry) }}">
|
<a href="{{ route('judging.entryScoreSheet',$entry) }}">
|
||||||
@endif
|
@endif
|
||||||
{{ $audition->name }} {{ $entry->draw_number }}
|
{{ $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>
|
</a>
|
||||||
@endif
|
@endif
|
||||||
</x-table.td>
|
</x-table.td>
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue