Flag head director status on judge assignment screen
Work on #64 Work on #66
This commit is contained in:
parent
1100e711f8
commit
31d3beea86
|
|
@ -98,7 +98,7 @@
|
|||
@if($bonusScore->judges->contains($judge->id))
|
||||
@continue
|
||||
@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>
|
||||
@endforeach
|
||||
</select>
|
||||
|
|
|
|||
|
|
@ -102,7 +102,7 @@
|
|||
<option>Add a judge</option>
|
||||
<optgroup label="Unassigned Judges">
|
||||
@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>
|
||||
@endforeach
|
||||
</optgroup>
|
||||
|
|
@ -111,7 +111,7 @@
|
|||
@if($room->judges->contains($judge->id))
|
||||
@continue
|
||||
@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>
|
||||
@endforeach
|
||||
</optgroup>
|
||||
|
|
|
|||
Loading…
Reference in New Issue