diff --git a/resources/views/avaliador/parecerBarema.blade.php b/resources/views/avaliador/parecerBarema.blade.php new file mode 100644 index 0000000000000000000000000000000000000000..024ea78f729b8b7bbbf2303350ae892af1bef029 --- /dev/null +++ b/resources/views/avaliador/parecerBarema.blade.php @@ -0,0 +1,150 @@ +@extends('layouts.app') + +@php $i=0; $numCampos=0; @endphp + +@section('content') + +
+ +
+ @component('projeto.formularioVisualizar.proponente2', ['edital' => $trabalho->evento, 'projeto' => $trabalho]) + @endcomponent +
+ + +
+
+
+
+
+
Anexos
+
+
+ + {{-- Anexo do Projeto --}} +
+ {{-- Arquivo --}} +
+ + + +
+
+ {{-- Autorização Especial --}} + @if($trabalho->evento->natureza_id != 3) +
+ + @if($trabalho->anexoAutorizacaoComiteEtica != null) + + @else + - + @endif +
+
+ @endif + {{-- Anexo(s) do Plano(s) de Trabalho --}} + @foreach( $trabalho->participantes as $participante) + @php + if( App\Arquivo::where('participanteId', $participante->id)->first() != null){ + $planoTrabalhoTemp = App\Arquivo::where('participanteId', $participante->id)->first()->nome; + }else{ + $planoTrabalhoTemp = null; + } + @endphp +
+ + + @if($planoTrabalhoTemp != null) + + @endif +
+ @endforeach + + {{--Documento Extra--}} + @if($trabalho->evento->nome_docExtra != null) +
+ + @if($trabalho->anexo_docExtra != null) + + @else + + @endif +
+
+ @endif +
+ +
+
+
+
+ +
+
+
+
+ +
+
Meu parecer
+
Trabalho: {{$trabalho->titulo}}
+
+
+ +
+ @csrf + + + +
+
+ + + + + + + + + @foreach ($camposAvaliacao as $campoAvaliacao) + + + + + + + + @php ++$i; ++$numCampos; @endphp + @endforeach +
Nome*DescriçãoNota Máxima*Prioridade*Nota da avaliação
+ +
+
+
+ +
+
+ +
+
+
+
+
+
+
+
+ +@endsection + +@section('javascript') + +@endsection + +