Auditionadmin 64 #71

Merged
okorpheus merged 9 commits from auditionadmin-64 into master 2024-08-11 04:16:54 +00:00
2 changed files with 3 additions and 3 deletions
Showing only changes of commit 31d3beea86 - Show all commits

View File

@ -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>

View File

@ -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>