@forelse($submissions as $submission) @empty @endforelse
{{ __('labels.headers.status') }} {{ __('labels.headers.submission_type') }} {{ __('labels.headers.title') }} {{ __('labels.headers.actions') }}
@if($submission->state->is_late)

{{ __($submission->state->step_name) }}

@else

{{ __($submission->state->step_name) }}

@endif @for($ps = 0; $ps < $submission->state->passedSteps; $ps++) @endfor @for($rs = 0; $rs < $submission->state->remainingSteps; $rs++) @endfor
@if($submission instanceof App\Models\PaperAbstractSubmission) {{ __('labels.abstract') }} @else {{ __('labels.paper') }} @endif {{ $submission->title }} @if($submission->subtitle)

{{ $submission->subtitle }}

@endif

{{ __('labels.by') }} {!! $authors_lists[$submission->paper->id] !!}

@if(isset($recommendations_lines[$submission->paper->id]))
@foreach($recommendations_lines[$submission->paper->id] as $title => $line)

{{ $title }} :  @foreach($line as $part) {{ $part['recommendation_name'] }}{{ $part['reviewer_name'] }}@if(!$loop->last), @endif @endforeach

@endforeach @endif
@forelse($actions_lists[$submission->paper->id] as $action) @include('includes.shared.icon_button', ['operation' => $action]) @empty — @endforelse
@include('includes.shared.message', ['message' => 'messages.empty', 'message_kind' => 'empty'])