auditionadmin/resources/views/tabulation/auditionSeating-unable-to-s...

17 lines
791 B
PHP

<x-card.card>
<x-card.heading>Unable to seat this audition</x-card.heading>
@if(! $rightPanel['data']['allScored'])
<p class="text-sm px-5 py-2">The audition cannot be seated while it has unscored entries.</p>
<div class="p-3">
<x-form.button href="{{ url()->current() }}?mass-no-show=1" class="mb-3" onclick="return confirm('Do you really want to mark unscored entries as no-shows?');">Unscored entries are No-Shows</x-form.button>
</div>
@endif
@if(! $rightPanel['data']['allScored'] && ! $rightPanel['data']['doublersResolved'])
<hr>
@endif
@if(! $rightPanel['data']['doublersResolved'])
<p class="text-sm px-5 py-2">The audition cannot be seated while it has unresolved doublers.</p>
@endif
</x-card.card>