From 5766b5cc70edfc6ace91e11f90df6fb46b5f8855 Mon Sep 17 00:00:00 2001 From: Lucas Henrique Date: Fri, 20 Jan 2023 00:31:01 -0300 Subject: [PATCH] =?UTF-8?q?Adiciona=20tela=20de=20parecer=20na=20avalia?= =?UTF-8?q?=C3=A7=C3=A3o=20tipo=20link?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../views/avaliador/parecerLink.blade.php | 141 ++++++++++++++++++ 1 file changed, 141 insertions(+) create mode 100644 resources/views/avaliador/parecerLink.blade.php diff --git a/resources/views/avaliador/parecerLink.blade.php b/resources/views/avaliador/parecerLink.blade.php new file mode 100644 index 0000000..eb53cb5 --- /dev/null +++ b/resources/views/avaliador/parecerLink.blade.php @@ -0,0 +1,141 @@ +@extends('layouts.app') + +@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 + + +
+ +
+

Responda ao formulário no link abaixo para enviar seu parecer.

+ +
+
+ +

Por fim, informe sua recomendação.

+ + +
+
+ +
+ +
+
+ + +
+
+
+
+
+ +@endsection + +@section('javascript') + +@endsection + + -- GitLab