From 834de902acac9a446642992eb9e1bf3ce3b93e41 Mon Sep 17 00:00:00 2001 From: Matt Young Date: Mon, 3 Nov 2025 09:02:41 -0600 Subject: [PATCH] Update results on directors page to add explaination. --- resources/views/entries/index.blade.php | 23 ++++++++++++++++------- 1 file changed, 16 insertions(+), 7 deletions(-) diff --git a/resources/views/entries/index.blade.php b/resources/views/entries/index.blade.php index 9c0703f..cad6781 100644 --- a/resources/views/entries/index.blade.php +++ b/resources/views/entries/index.blade.php @@ -53,7 +53,12 @@ Entry Listing - You have {{ $entries->count() }} entries + + You have {{ $entries->count() }} entries
+

Note on results

+

Doublers will show declined on all but one entry. The rank shown on this screen does + not account for any doublers that declined a seat in that entries audition.

+
@@ -112,14 +117,18 @@ @endif @endif - + @if($entry->audition->hasFlag('seats_published')) - @if($entry->seat) - {{ $entry->seat->ensemble->name }} - {{ $entry->seat->seat }} - @else - Not Seated - @endif + @if($entry->seat) + {{ $entry->seat->ensemble->name }} - {{ $entry->seat->seat }} + @else + @if($entry->hasFlag('declined')) + Declined + @else + Not Seated + @endif + @endif {{ $entry->rank('seating', false) }}