@extends('layouts.internal') @section('title', 'Nominee Evaluations · PLOCAL Internal') @section('content')

PLOCAL Evaluation

Active Nominee Evaluations

Reviewers and Administrators can evaluate active accepted Nominees during their bound 96-hour window. Public Voting and award decisions are separate later stages.

@if($nominees->isEmpty())

No active Nominee evaluations

There are no accepted Nominees in your authorized active-window scope.

@else
@foreach($nominees as $item)@endforeach
Authorized active Nominee evaluations
BusinessSubmitted locationWindowEndsScoreAction
{{ $item->display_name }}{{ $item->nominee_public_id }}{{ $item->submitted_city_text }}, {{ $item->submitted_state_text }}{{ str($item->window_status)->title() }}{{ $item->plocal_score_hundredths === null ? 'Not finalized' : number_format($item->plocal_score_hundredths / 100, 2) . ' / 10' }}Open Evaluation
{{ $nominees->links() }}@endif @endsection