Flag head director status on judge assignment screen

Work on #64
Work on #66
This commit is contained in:
Matt Young 2024-08-10 23:13:47 -05:00
parent 1100e711f8
commit 31d3beea86
2 changed files with 3 additions and 3 deletions

View File

@ -98,7 +98,7 @@
@if($bonusScore->judges->contains($judge->id)) @if($bonusScore->judges->contains($judge->id))
@continue @continue
@endif @endif
<option value="{{ $judge->id }}">{{ $judge->full_name() }} <option value="{{ $judge->id }}">{{ $judge->full_name() }}@if($judge->hasFlag('head_director')) (H) @endif
- {{ $judge->judging_preference }}</option> - {{ $judge->judging_preference }}</option>
@endforeach @endforeach
</select> </select>

View File

@ -102,7 +102,7 @@
<option>Add a judge</option> <option>Add a judge</option>
<optgroup label="Unassigned Judges"> <optgroup label="Unassigned Judges">
@foreach($usersWithoutRooms as $judge) {{-- skip judges alrady assigned to this audition --}} @foreach($usersWithoutRooms as $judge) {{-- skip judges alrady assigned to this audition --}}
<option value="{{ $judge->id }}">{{ $judge->full_name() }} <option value="{{ $judge->id }}">{{ $judge->full_name() }}@if($judge->hasFlag('head_director')) (H) @endif
- {{ $judge->judging_preference }}</option> - {{ $judge->judging_preference }}</option>
@endforeach @endforeach
</optgroup> </optgroup>
@ -111,7 +111,7 @@
@if($room->judges->contains($judge->id)) @if($room->judges->contains($judge->id))
@continue @continue
@endif @endif
<option value="{{ $judge->id }}">{{ $judge->full_name() }} <option value="{{ $judge->id }}">{{ $judge->full_name() }}@if($judge->hasFlag('head_director')) (H) @endif
- {{ $judge->judging_preference }}</option> - {{ $judge->judging_preference }}</option>
@endforeach @endforeach
</optgroup> </optgroup>