{{-- Begin block for doubler entry --}}
@if($de->hasFlag('no_show'))
NO-SHOW
@elseif($de->hasFlag('failed_prelim'))
Failed Prelim
@elseif($de->hasFlag('declined'))
Declined
@else
@php($unscored = $de->audition->unscoredEntries()->count())
@if($unscored > 0)
{{ $unscored }} Unscored Entries
@endif
@if(! $de->rank('seating'))
THIS ENTRY NOT SCORED
@else
Ranked: {{ $de->rank('seating') }}
Acceptance Limits
@foreach ($de->audition->SeatingLimits as $limit)
{{ $limit->ensemble->name }} -> {{ $limit->maximum_accepted }}
@endforeach
{{-- TODO: Don't show the option to accept if it cannot be done --}}
Accept {{ $de->audition->name }}
Decline {{ $de->audition->name }}
@endif
@endif