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) }}