@extends('layouts.recenzent') @section('title') {{$page->title}} @endsection @section('content')
Tytuł:
{{$page->title}}
Pliki:
@if(isset($page->plik_miz))
plik_miz)}}>Pobierz plik miz
plik_bib)}}>Pobierz plik bib
@if(isset($page->plik_voc))
plik_voc)}}>Pobierz plik voc
@endif
@else
Brak plików do pobrania
@endif
@if($komentarze!='[]')
@foreach($komentarze as $komentarz)
@if($komentarz->status==2) Edytor: {{$komentarz->komentarz}} @else Autor: {{$komentarz->komentarz}} @endif
@endforeach
@endif
Ostateczny termin oddania recenzji:@if(isset($data)) {{$data->data}}@else brak wyznaczonej daty @endif

@if($id->status==1)
Czy wystawisz recenzje:
{!! Form::model($id,['route'=>['recenzent.akceptuj',$id],'method'=>'PUT']) !!} {!! Form::submit('Akceptuj',['class'=>'btn btn-success','onClick'=>'return sprawdz()']) !!} {!! Form::close() !!}
@endif @if($id->status==2)
Dodaj opinie przez:
{!! Form::open(['route'=>['recenzent.storeFormularz',$id]]) !!} {!! Form::hidden('recenzja_id',$id->id) !!}
{!! Form::label('confidence','Confidence:') !!}
Very confidence Quite confidence Not very confidence @if ($errors->has('confidence')) {{ $errors->first('confidence') }} @endif
{!! Form::label('decision','The decision:') !!}
accept as is (editorial changes only, can be done by the editor)
accept, requires changes by the author to be approved by the editor
reject, substantial author's revisions needed before resubmission for another review
decision delayed, MML revision needed
reject, no hope of getting anything of value
@if ($errors->has('decision')) {{ $errors->first('decision') }} @endif
{!! Form::label('presentation','Presentation:') !!}
Very poor Poor Good Very good @if ($errors->has('presentation')) {{ $errors->first('presentation') }} @endif
{!! Form::label('quality_of_formalization','The quality of formalization:') !!}
Very poor Poor Good Very good @if ($errors->has('quality_of_formalization')) {{ $errors->first('quality_of_formalization') }} @endif
{!! Form::label('significance_for_mml','Significance for MML:') !!}
Very poor Poor Good Very good @if ($errors->has('significance_for_mml')) {{ $errors->first('significance_for_mml') }} @endif
{!! Form::label('comments',"Justification/comments (to be forwarded to the authors):") !!} {!! Form::textarea('comments',null,['class'=>'form-control']) !!} @if ($errors->has('comments')) {{ $errors->first('comments') }} @endif
{!! Form::label('comments_editors',"Comments to editors only:") !!} {!! Form::textarea('comments_editors',null,['class'=>'form-control']) !!} @if ($errors->has('comments_editors')) {{ $errors->first('comments_editors') }} @endif
{!! Form::label('mml_remarks',"MML Remarks:") !!} {!! Form::textarea('mml_remarks',null,['class'=>'form-control']) !!} @if ($errors->has('mml_remarks')) {{ $errors->first('mml_remarks') }} @endif
{!! Form::submit('Zapisz',['class'=>'btn btn-primary','onClick'=>'return sprawdz()']) !!} {!! link_to(URL::previous(),'Powrót',['class'=>'btn btn-default']) !!}
{!! Form::close() !!}
@endif @endsection