auditionadmin/resources/views/tabulation/seating-page/auditionSeating.blade.php

36 lines
1.2 KiB
PHP

<x-layout.app>
<x-slot:page_title>Audition Seating - {{ $audition->name }}</x-slot:page_title>
<div class="grid grid-cols-4 gap-4">
<div class="col-span-3"> {{-- Entry Ranking Table --}}
@include('tabulation.seating-page.scored-entries-table')
@include('tabulation.seating-page.unscored-entries-table')
@include('tabulation.seating-page.no-show-entries-table')
@include('tabulation.seating-page.failed-prelim-entries')
</div>
<div> {{-- Right Column Wrapper --}}
@if($audition->hasFlag('seats_published'))
@include('tabulation.seating-page.right-column.published-results')
@else
@if($canSeat)
@if($seatingProposal)
@include('tabulation.seating-page.right-column.unpublished-results-proposal')
@else
@include('tabulation.seating-page.right-column.form-to-propose-seats')
@endif
@else
@include('tabulation.seating-page.right-column.not-ready-to-seat')
@endif
@endif
</div>
</div>
</x-layout.app>