@extends('reviewers.dashboard') @section('content')
All Review Task on {{ $conf->name }}
@forelse($submissions as $subs) @if($subs->getLastPaper()->status === "WAIT_REV" && !$subs->uploader->isParticipating($conf)) @endif @empty @endforelse
# ID Title Abstract Status
{{ $count++ }} {{ $subs->id }} {{ str_limit($subs->title, 70) }} @if ($subs->isDeleted()) Canceled @endif {{ str_limit($subs->abstract, 100) }} {{ ($subs->pivot->score_a === NULL) ? $subs->getStatusFromReviewer() : 'Done' }}
@endsection @section('scripts.footer') @endsection