Show directors results of nomination seating for MEOBDA nomination groups.
This commit is contained in:
parent
65b8c8bd81
commit
978ec0edf9
|
|
@ -57,6 +57,7 @@
|
|||
<x-table.table id="nominationTable">
|
||||
<thead>
|
||||
<tr>
|
||||
<x-table.th>Nom ID</x-table.th>
|
||||
<x-table.th>Name</x-table.th>
|
||||
<x-table.th>School</x-table.th>
|
||||
<x-table.th>Nominated For</x-table.th>
|
||||
|
|
@ -67,6 +68,7 @@
|
|||
<x-table.body>
|
||||
@foreach($nominations as $nomination)
|
||||
<tr>
|
||||
<x-table.td>{{ $nomination->id }}</x-table.td>
|
||||
<x-table.td>{{ $nomination->student->full_name('fl') }}</x-table.td>
|
||||
<x-table.td>{{ $nomination->student->school->name }}</x-table.td>
|
||||
<x-table.td>{{ $nomination->ensemble->name }} - {{ $nomination->data['instrument'] }}</x-table.td>
|
||||
|
|
|
|||
|
|
@ -17,6 +17,10 @@
|
|||
<x-table.th>Student</x-table.th>
|
||||
<x-table.th>Grade</x-table.th>
|
||||
<x-table.th>Instrument</x-table.th>
|
||||
@if($past_deadline[$ensemble->id])
|
||||
<x-table.th>Split</x-table.th>
|
||||
<x-table.th>Seat</x-table.th>
|
||||
@endif
|
||||
</tr>
|
||||
</thead>
|
||||
<x-table.body>
|
||||
|
|
@ -38,6 +42,10 @@
|
|||
for the {{ $ensemble->name }} ensemble.
|
||||
</x-delete-resource-modal>
|
||||
</x-table.td>
|
||||
@else
|
||||
<x-table.td>{{ $nom->data['split'] ?? '' }}</x-table.td>
|
||||
<x-table.td>{{ $nom->data['seat'] ?? '' }}</x-table.td>
|
||||
|
||||
@endif
|
||||
</tr>
|
||||
@endforeach
|
||||
|
|
|
|||
Loading…
Reference in New Issue