Skip to content
GitLab
Menu
Projects
Groups
Snippets
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Open sidebar
Walter Felipe
submeta
Commits
2f8e2cca
Commit
2f8e2cca
authored
Jan 30, 2022
by
Guilherme Silva
Browse files
Criada telas para visualização e criação de parecer interno
parent
57f6ff43
Changes
2
Hide whitespace changes
Inline
Side-by-side
resources/views/administrador/visualizarParecerInterno.blade.php
0 → 100644
View file @
2f8e2cca
@
extends
(
'layouts.app'
)
@
section
(
'content'
)
<
div
class
=
"container content"
>
<
div
class
=
"row justify-content-center"
>
<
div
class
=
"col-sm-12"
>
<
div
class
=
"card"
style
=
"margin-top:50px"
>
<
div
class
=
"card-body"
>
<
a
href
=
"
{
{url()->previous()}
}
"
class
=
"btn btn-primary mb-2"
>
Voltar
</
a
>
<
h5
class
=
"card-title"
>
Parecer
do
avaliador
:
{{
$avaliador
->
user
->
name
}}
</
h5
>
<
h6
class
=
"card-title"
>
Trabalho
:
{{
$trabalho
->
titulo
}}
</
h6
>
<
p
class
=
"card-text"
>
<
h3
>
Informações
do
proponente
</
h3
>
{{
--
Coordenador
--
}}
<
div
class
=
"row"
>
<
div
class
=
"col-sm-6"
>
<
label
for
=
"nomeTrabalho"
class
=
"col-form-label"
>
Link
Lattes
do
Proponente
</
label
>
<
span
class
=
"form-control"
name
=
"linkLattesEstudante"
>
@
if
(
App\Proponente
::
where
(
'id'
,
$trabalho
->
proponente_id
)
->
first
()
->
linkLattes
!=
null
)
{{
App\Proponente
::
where
(
'id'
,
$trabalho
->
proponente_id
)
->
first
()
->
linkLattes
}}
@
endif
</
span
>
</
div
>
<
div
class
=
"col-sm-6"
style
=
"top: 40px;"
>
<
label
for
=
"aceito"
>
{{
__
(
'Aceito'
)
}}
</
label
>
<
input
type
=
"radio"
name
=
"anexoLinkLattes"
value
=
"aceito"
@
if
(
$parecer
!=
null
&&
$parecer
->
statusLinkLattesProponente
==
'aceito'
)
checked
@
else
disabled
@
endif
required
>
<
label
for
=
"recusado"
>
{{
__
(
'Recusado'
)
}}
</
label
>
<
input
type
=
"radio"
name
=
"anexoLinkLattes"
value
=
"recusado"
@
if
(
$parecer
!=
null
&&
$parecer
->
statusLinkLattesProponente
==
'recusado'
)
checked
@
else
disabled
@
endif
>
</
div
>
<
div
class
=
"col-sm-6"
>
<
label
for
=
"nomeTrabalho"
class
=
"col-form-label"
>
{{
__
(
'Link do grupo de pesquisa:'
)
}}
</
label
>
<
span
class
=
"form-control"
name
=
"linkGrupo"
>
{{
$trabalho
->
linkGrupoPesquisa
}}
</
span
>
</
div
>
<
div
class
=
"col-sm-6"
style
=
"top: 40px;"
>
<
label
for
=
"aceito"
style
=
"left: auto"
>
{{
__
(
'Aceito'
)
}}
</
label
>
<
input
type
=
"radio"
name
=
"anexoGrupoPesquisa"
value
=
"aceito"
@
if
(
$parecer
!=
null
&&
$parecer
->
statusLinkGrupoPesquisa
==
'aceito'
)
checked
@
else
disabled
@
endif
required
>
<
label
for
=
"recusado"
>
{{
__
(
'Recusado'
)
}}
</
label
>
<
input
type
=
"radio"
name
=
"anexoGrupoPesquisa"
value
=
"recusado"
@
if
(
$parecer
!=
null
&&
$parecer
->
statusLinkGrupoPesquisa
==
'recusado'
)
checked
@
else
disabled
@
endif
>
</
div
>
</
div
>
<
h3
>
Anexos
</
h3
>
{{
--
Anexo
do
Projeto
--
}}
<
div
class
=
"row"
>
{{
--
Arquivo
--
}}
<
div
class
=
"col-sm-3"
>
<
label
for
=
"anexoProjeto"
class
=
"col-form-label"
>
{{
__
(
'Projeto: '
)
}}
</
label
>
<
a
href
=
"{{ route('baixar.anexo.projeto', ['id' =>
$trabalho->id
])}}"
>
Arquivo
</
a
>
</
div
>
<
div
class
=
"col-sm-3"
style
=
"top: 5px; text-align: right"
>
<
label
for
=
"aceito"
style
=
"left: auto"
>
{{
__
(
'Aceito'
)
}}
</
label
>
<
input
type
=
"radio"
name
=
"anexoProjeto"
value
=
"aceito"
@
if
(
$parecer
!=
null
&&
$parecer
->
statusAnexoProjeto
==
'aceito'
)
checked
@
else
disabled
@
endif
required
>
<
label
for
=
"recusado"
>
{{
__
(
'Recusado'
)
}}
</
label
>
<
input
type
=
"radio"
name
=
"anexoProjeto"
value
=
"recusado"
@
if
(
$parecer
!=
null
&&
$parecer
->
statusAnexoProjeto
==
'recusado'
)
checked
@
else
disabled
@
endif
>
</
div
>
<
div
class
=
"col-sm-3"
>
<
label
for
=
"anexoLatterCoordenador"
class
=
"col-form-label"
>
{{
__
(
'Lattes do Coordenador: '
)
}}
</
label
>
<
a
href
=
"{{ route('baixar.anexo.lattes', ['id' =>
$trabalho->id
]) }}"
>
Arquivo
</
a
>
</
div
>
<
div
class
=
"col-sm-3"
style
=
"top: 5px; text-align: right"
>
<
label
for
=
"aceito"
style
=
"left: auto"
>
{{
__
(
'Aceito'
)
}}
</
label
>
<
input
type
=
"radio"
name
=
"anexoLattesCoordenador"
value
=
"aceito"
@
if
(
$parecer
!=
null
&&
$parecer
->
statusAnexoLattesCoordenador
==
'aceito'
)
checked
@
else
disabled
@
endif
required
>
<
label
for
=
"recusado"
>
{{
__
(
'Recusado'
)
}}
</
label
>
<
input
type
=
"radio"
name
=
"anexoLattesCoordenador"
value
=
"recusado"
@
if
(
$parecer
!=
null
&&
$parecer
->
statusAnexoLattesCoordenador
==
'recusado'
)
checked
@
else
disabled
@
endif
>
</
div
>
<
div
class
=
"col-sm-3"
>
<
label
for
=
"anexoPlanilha"
class
=
"col-form-label"
>
{{
__
(
'Planilha de Pontuação: '
)
}}
</
label
>
<
a
href
=
"{{ route('baixar.anexo.planilha', ['id' =>
$trabalho->id
]) }}"
>
Arquivo
</
a
>
</
div
>
<
div
class
=
"col-sm-3"
style
=
"top: 5px; text-align: right"
>
<
label
for
=
"aceito"
style
=
"left: auto"
>
{{
__
(
'Aceito'
)
}}
</
label
>
<
input
type
=
"radio"
name
=
"anexoPlanilha"
value
=
"aceito"
@
if
(
$parecer
!=
null
&&
$parecer
->
statusAnexoPlanilhaPontuacao
==
'aceito'
)
checked
@
else
disabled
@
endif
required
>
<
label
for
=
"recusado"
>
{{
__
(
'Recusado'
)
}}
</
label
>
<
input
type
=
"radio"
name
=
"anexoPlanilha"
value
=
"recusado"
@
if
(
$parecer
!=
null
&&
$parecer
->
statusAnexoPlanilhaPontuacao
==
'recusado'
)
checked
@
else
disabled
@
endif
>
</
div
>
@
if
(
$evento
->
tipo
==
'PIBIC'
||
$evento
->
tipo
==
'PIBIC-EM'
)
{{
--
Decisão
do
CONSU
--
}}
<
div
class
=
"col-sm-3"
>
<
label
for
=
"anexoCONSU"
class
=
"col-form-label"
>
{{
__
(
'Decisão do CONSU: '
)
}}
</
label
>
<
a
href
=
"{{ route('baixar.anexo.consu', ['id' =>
$trabalho->id
]) }}"
>
Arquivo
</
a
>
</
div
>
<
div
class
=
"col-sm-3"
style
=
"top: 5px; text-align: right"
>
<
label
for
=
"aceito"
style
=
"left: auto"
>
{{
__
(
'Aceito'
)
}}
</
label
>
<
input
type
=
"radio"
name
=
"anexoConsu"
value
=
"aceito"
@
if
(
$parecer
!=
null
&&
$parecer
->
statusAnexoDecisaoCONSU
==
'aceito'
)
checked
@
else
disabled
@
endif
required
>
<
label
for
=
"recusado"
>
{{
__
(
'Recusado'
)
}}
</
label
>
<
input
type
=
"radio"
name
=
"anexoConsu"
value
=
"recusado"
@
if
(
$parecer
!=
null
&&
$parecer
->
statusAnexoDecisaoCONSU
==
'recusado'
)
checked
@
else
disabled
@
endif
>
</
div
>
@
endif
<
div
class
=
"col-sm-3"
>
<
label
for
=
"nomeTrabalho"
class
=
"col-form-label"
>
{{
__
(
'Autorização do Comitê de Ética: '
)
}}
</
label
>
@
if
(
$trabalho
->
anexoAutorizacaoComiteEtica
!=
null
)
<
a
href
=
"{{ route('baixar.anexo.comite', ['id' =>
$trabalho->id
]) }}"
>
Arquivo
</
a
>
@
else
-
@
endif
</
div
>
<
div
class
=
"col-sm-3"
style
=
"top: 5px; text-align: right"
>
<
label
for
=
"aceito"
style
=
"left: auto"
>
{{
__
(
'Aceito'
)
}}
</
label
>
<
input
type
=
"radio"
name
=
"anexoComiteEtica"
value
=
"aceito"
@
if
(
$parecer
!=
null
&&
$parecer
->
statusAnexoAtuorizacaoComiteEtica
==
'aceito'
)
checked
@
else
disabled
@
endif
required
>
<
label
for
=
"recusado"
>
{{
__
(
'Recusado'
)
}}
</
label
>
<
input
type
=
"radio"
name
=
"anexoComiteEtica"
value
=
"recusado"
@
if
(
$parecer
!=
null
&&
$parecer
->
statusAnexoAtuorizacaoComiteEtica
==
'recusado'
)
checked
@
else
disabled
@
endif
>
</
div
>
<
div
class
=
"col-sm-3"
>
<
label
for
=
"nomeTrabalho"
class
=
"col-form-label"
>
{{
__
(
'Justificativa: '
)
}}
</
label
>
@
if
(
$trabalho
->
justificativaAutorizacaoEtica
!=
null
)
<
a
href
=
"{{ route('baixar.anexo.justificativa', ['id' =>
$trabalho->id
]) }}"
>
Arquivo
</
a
>
@
else
-
@
endif
</
div
>
<
div
class
=
"col-sm-3"
style
=
"top: 5px; text-align: right"
>
<
label
for
=
"aceito"
style
=
"left: auto"
>
{{
__
(
'Aceito'
)
}}
</
label
>
<
input
type
=
"radio"
name
=
"anexoJustificativa"
value
=
"aceito"
@
if
(
$parecer
!=
null
&&
$parecer
->
statusJustificativaAutorizacaoEtica
==
'aceito'
)
checked
@
else
disabled
@
endif
required
>
<
label
for
=
"recusado"
>
{{
__
(
'Recusado'
)
}}
</
label
>
<
input
type
=
"radio"
name
=
"anexoJustificativa"
value
=
"recusado"
@
if
(
$parecer
!=
null
&&
$parecer
->
statusJustificativaAutorizacaoEtica
==
'recusado'
)
checked
@
else
disabled
@
endif
>
</
div
>
{{
--
Planos
de
trabalho
--
}}
<
div
class
=
"col-sm-3"
>
<
label
for
=
"nomeTrabalho"
class
=
"col-form-label"
>
{{
__
(
'Plano de Trabalho: '
)
}}
</
label
>
@
if
(
$trabalho
->
participantes
!=
null
)
<
a
href
=
" "
data
-
toggle
=
"modal"
data
-
target
=
"#modalPlanos"
>
Planos
</
a
>
@
else
-
@
endif
</
div
>
<
div
class
=
"col-sm-3"
style
=
"top: 5px; text-align: right"
>
<
label
for
=
"aceito"
style
=
"left: auto"
>
{{
__
(
'Aceito'
)
}}
</
label
>
<
input
type
=
"radio"
name
=
"anexoPlano"
value
=
"aceito"
@
if
(
$parecer
!=
null
&&
$parecer
->
statusPlanoTrabalho
==
'aceito'
)
checked
@
else
disabled
@
endif
>
<
label
for
=
"recusado"
>
{{
__
(
'Recusado'
)
}}
</
label
>
<
input
type
=
"radio"
name
=
"anexoPlano"
value
=
"recusado"
@
if
(
$parecer
!=
null
&&
$parecer
->
statusPlanoTrabalho
==
'recusado'
)
checked
@
else
disabled
@
endif
>
</
div
>
{{
--
Modal
planos
de
trabalho
--
}}
<
div
class
=
"modal fade"
id
=
"modalPlanos"
tabindex
=
"-1"
role
=
"dialog"
aria
-
labelledby
=
"modalPlanosLabel"
aria
-
hidden
=
"true"
>
<
div
class
=
"modal-dialog"
role
=
"document"
>
<
div
class
=
"modal-content"
>
<
div
class
=
"modal-header"
>
<
h4
class
=
"modal-title"
id
=
"modalPlanosLabel"
align
=
"center"
>
Planos
de
Trabalho
</
h4
>
</
div
>
<
div
class
=
"modal-body"
>
@
foreach
(
$trabalho
->
participantes
as
$participante
)
@
php
if
(
App\Arquivo
::
where
(
'participanteId'
,
$participante
->
id
)
->
first
()
!=
null
){
$planoTrabalho
=
App\Arquivo
::
where
(
'participanteId'
,
$participante
->
id
)
->
first
();
}
else
{
$planoTrabalho
=
null
;
}
@
endphp
<
div
class
=
"col-sm-12"
>
<
label
for
=
"nomeTrabalho"
class
=
"col-form-label"
>
{{
__
(
'Plano de Trabalho: '
)
}}
</
label
>
@
if
(
$planoTrabalho
!=
null
)
<
a
href
=
"{{route('download', ['file' =>
$planoTrabalho->nome
])}}"
>
{{
$planoTrabalho
->
titulo
}}
</
a
>
@
else
-
@
endif
</
div
>
@
endforeach
</
div
>
<
div
class
=
"modal-footer"
>
<
button
type
=
"button"
class
=
"btn btn-danger"
data
-
dismiss
=
"modal"
>
Fechar
</
button
>
</
div
>
</
div
>
</
div
>
</
div
>
</
div
>
</
div
>
</
div
>
</
div
>
</
div
>
@
endsection
@
section
(
'javascript'
)
<
script
type
=
"text/javascript"
>
</
script
>
@
endsection
resources/views/avaliador/parecerInterno.blade.php
0 → 100644
View file @
2f8e2cca
@
extends
(
'layouts.app'
)
@
section
(
'content'
)
<
div
class
=
"row justify-content-center"
>
@
component
(
'projeto.formularioVisualizar.projeto'
,
[
'grandeAreas'
=>
$grandeAreas
,
'projeto'
=>
$trabalho
,
'areas'
=>
$areas
,
'subareas'
=>
$subAreas
])
@
endcomponent
@
component
(
'projeto.formularioVisualizar.proponente'
,
[
'projeto'
=>
$trabalho
])
@
endcomponent
@
component
(
'projeto.formularioVisualizar.anexos'
,
[
'projeto'
=>
$trabalho
])
@
endcomponent
@
component
(
'projeto.formularioVisualizar.participantes'
,
[
'estados'
=>
$estados
,
'enum_turno'
=>
$enum_turno
,
'projeto'
=>
$trabalho
,
'participantes'
=>
$participantes
,
'arquivos'
=>
$arquivos
])
@
endcomponent
{{
--
@
component
(
'projeto.formularioVisualizar.finalizar'
,
[
'projeto'
=>
$projeto
])
@
endcomponent
--
}}
</
div
>
<
div
class
=
"container col-md-11"
>
<
div
class
=
"row justify-content-center"
style
=
"margin-top: 3rem;"
>
<
div
class
=
"col-md-11"
style
=
"margin-bottom: -3rem"
>
<
div
class
=
"card card_conteudo shadow bg-white"
style
=
"border-radius:12px; border-width:0px; overflow:auto"
>
<
div
class
=
"card-header"
style
=
"border-top-left-radius: 12px; border-top-right-radius: 12px; background-color: #fff"
>
<
div
class
=
"d-flex justify-content-between align-items-center"
style
=
"margin-top: 9px; margin-bottom:-1rem"
>
<
div
class
=
"bottomVoltar"
style
=
"margin-top: -20px"
>
<
a
href
=
"javascript:history.back()"
class
=
"btn btn-secondary"
style
=
""
><
img
src
=
"
{
{asset('img/icons/logo_esquerda.png')}
}
"
alt
=
""
width
=
"15px"
></
a
>
</
div
>
<
div
class
=
"form-group"
>
<
h5
class
=
"card-title mb-0"
style
=
"font-size:25px; font-family:Arial, Helvetica, sans-serif; color:#1492E6"
>
Parecer
Interno
</
h5
>
<
h5
class
=
"card-title mb-0"
style
=
"font-size:19px; font-family:Arial, Helvetica, sans-serif; color:#909090"
>
Projeto
:
{{
$trabalho
->
titulo
}}
</
h5
>
</
div
>
<
div
style
=
"margin-top: -2rem"
>
<
div
class
=
"form-group"
>
<
div
style
=
"margin-top:30px;"
>
{{
--
Pesquisar
--
}}
</
div
>
</
div
>
</
div
>
</
div
>
</
div
>
<
div
class
=
"card-body"
>
<
form
method
=
"POST"
action
=
"
{
{route('avaliador.enviarParecerInterno')}
}
"
enctype
=
"multipart/form-data"
>
@
csrf
<
input
type
=
"hidden"
name
=
"trabalho_id"
value
=
"
{
{$trabalho->id}
}
"
>
<
input
type
=
"hidden"
name
=
"avaliador_id"
value
=
"
{
{Auth::user()->avaliadors->id}
}
"
>
<
input
type
=
"hidden"
name
=
"evento_id"
value
=
"
{
{$evento->id}
}
"
>
<
h3
>
Informações
do
proponente
</
h3
>
{{
--
Coordenador
--
}}
<
div
class
=
"row"
>
<
div
class
=
"col-sm-10"
>
<
label
for
=
"nomeTrabalho"
class
=
"col-form-label"
>
Link
Lattes
do
Proponente
:
</
label
>
<
label
for
=
"aceito"
>
{{
__
(
' Aceito'
)
}}
</
label
>
<
input
type
=
"radio"
name
=
"anexoLinkLattes"
value
=
"aceito"
@
if
(
$parecer
!=
null
&&
$parecer
->
statusLinkLattesProponente
==
'aceito'
)
checked
@
endif
required
>
<
label
for
=
"recusado"
>
{{
__
(
' Recusado'
)
}}
</
label
>
<
input
type
=
"radio"
name
=
"anexoLinkLattes"
value
=
"recusado"
@
if
(
$parecer
!=
null
&&
$parecer
->
statusLinkLattesProponente
==
'recusado'
)
checked
@
endif
>
</
div
>
<
div
class
=
"col-sm-10"
>
<
label
for
=
"nomeTrabalho"
class
=
"col-form-label"
>
{{
__
(
'Link do grupo de pesquisa: '
)
}}
</
label
>
<
label
for
=
"aceito"
style
=
"left: auto"
>
{{
__
(
' Aceito'
)
}}
</
label
>
<
input
type
=
"radio"
name
=
"anexoGrupoPesquisa"
value
=
"aceito"
@
if
(
$parecer
!=
null
&&
$parecer
->
statusLinkGrupoPesquisa
==
'aceito'
)
checked
@
endif
required
>
<
label
for
=
"recusado"
>
{{
__
(
' Recusado'
)
}}
</
label
>
<
input
type
=
"radio"
name
=
"anexoGrupoPesquisa"
value
=
"recusado"
@
if
(
$parecer
!=
null
&&
$parecer
->
statusLinkGrupoPesquisa
==
'recusado'
)
checked
@
endif
>
</
div
>
</
div
>
<
h3
>
Anexos
</
h3
>
{{
--
Anexo
do
Projeto
--
}}
<
div
class
=
"row"
>
{{
--
Arquivo
--
}}
<
div
class
=
"col-sm-6"
>
<
label
for
=
"anexoProjeto"
class
=
"col-form-label"
>
{{
__
(
'Projeto: '
)
}}
</
label
>
<
label
for
=
"aceito"
style
=
"left: auto"
>
{{
__
(
' Aceito'
)
}}
</
label
>
<
input
type
=
"radio"
name
=
"anexoProjeto"
value
=
"aceito"
@
if
(
$parecer
!=
null
&&
$parecer
->
statusAnexoProjeto
==
'aceito'
)
checked
@
endif
required
>
<
label
for
=
"recusado"
>
{{
__
(
' Recusado'
)
}}
</
label
>
<
input
type
=
"radio"
name
=
"anexoProjeto"
value
=
"recusado"
@
if
(
$parecer
!=
null
&&
$parecer
->
statusAnexoProjeto
==
'recusado'
)
checked
@
endif
>
</
div
>
<
div
class
=
"col-sm-6"
>
<
label
for
=
"anexoLatterCoordenador"
class
=
"col-form-label"
>
{{
__
(
'Lattes do Coordenador: '
)
}}
</
label
>
<
label
for
=
"aceito"
style
=
"left: auto"
>
{{
__
(
' Aceito'
)
}}
</
label
>
<
input
type
=
"radio"
name
=
"anexoLattesCoordenador"
value
=
"aceito"
@
if
(
$parecer
!=
null
&&
$parecer
->
statusAnexoLattesCoordenador
==
'aceito'
)
checked
@
endif
required
>
<
label
for
=
"recusado"
>
{{
__
(
' Recusado'
)
}}
</
label
>
<
input
type
=
"radio"
name
=
"anexoLattesCoordenador"
value
=
"recusado"
@
if
(
$parecer
!=
null
&&
$parecer
->
statusAnexoLattesCoordenador
==
'recusado'
)
checked
@
endif
>
</
div
>
<
div
class
=
"col-sm-6"
>
<
label
for
=
"anexoPlanilha"
class
=
"col-form-label"
>
{{
__
(
'Planilha de Pontuação: '
)
}}
</
label
>
<
label
for
=
"aceito"
style
=
"left: auto"
>
{{
__
(
' Aceito'
)
}}
</
label
>
<
input
type
=
"radio"
name
=
"anexoPlanilha"
value
=
"aceito"
@
if
(
$parecer
!=
null
&&
$parecer
->
statusAnexoPlanilhaPontuacao
==
'aceito'
)
checked
@
endif
required
>
<
label
for
=
"recusado"
>
{{
__
(
' Recusado'
)
}}
</
label
>
<
input
type
=
"radio"
name
=
"anexoPlanilha"
value
=
"recusado"
@
if
(
$parecer
!=
null
&&
$parecer
->
statusAnexoPlanilhaPontuacao
==
'recusado'
)
checked
@
endif
>
</
div
>
@
if
(
$evento
->
tipo
==
'PIBIC'
||
$evento
->
tipo
==
'PIBIC-EM'
)
{{
--
Decisão
do
CONSU
--
}}
<
div
class
=
"col-sm-6"
>
<
label
for
=
"anexoCONSU"
class
=
"col-form-label"
>
{{
__
(
'Decisão do CONSU: '
)
}}
</
label
>
<
label
for
=
"aceito"
style
=
"left: auto"
>
{{
__
(
' Aceito'
)
}}
</
label
>
<
input
type
=
"radio"
name
=
"anexoConsu"
value
=
"aceito"
@
if
(
$parecer
!=
null
&&
$parecer
->
statusAnexoDecisaoCONSU
==
'aceito'
)
checked
@
endif
required
>
<
label
for
=
"recusado"
>
{{
__
(
' Recusado'
)
}}
</
label
>
<
input
type
=
"radio"
name
=
"anexoConsu"
value
=
"recusado"
@
if
(
$parecer
!=
null
&&
$parecer
->
statusAnexoDecisaoCONSU
==
'recusado'
)
checked
@
endif
>
</
div
>
@
endif
<
div
class
=
"col-sm-6"
>
<
label
for
=
"nomeTrabalho"
class
=
"col-form-label"
>
{{
__
(
'Autorização do Comitê de Ética: '
)
}}
</
label
>
<
label
for
=
"aceito"
style
=
"left: auto"
>
{{
__
(
' Aceito'
)
}}
</
label
>
<
input
type
=
"radio"
name
=
"anexoComiteEtica"
value
=
"aceito"
@
if
(
$parecer
!=
null
&&
$parecer
->
statusAnexoAtuorizacaoComiteEtica
==
'aceito'
)
checked
@
endif
required
>
<
label
for
=
"recusado"
>
{{
__
(
' Recusado'
)
}}
</
label
>
<
input
type
=
"radio"
name
=
"anexoComiteEtica"
value
=
"recusado"
@
if
(
$parecer
!=
null
&&
$parecer
->
statusAnexoAtuorizacaoComiteEtica
==
'recusado'
)
checked
@
endif
>
</
div
>
<
div
class
=
"col-sm-6"
>
<
label
for
=
"nomeTrabalho"
class
=
"col-form-label"
>
{{
__
(
'Justificativa: '
)
}}
</
label
>
<
label
for
=
"aceito"
style
=
"left: auto"
>
{{
__
(
' Aceito'
)
}}
</
label
>
<
input
type
=
"radio"
name
=
"anexoJustificativa"
value
=
"aceito"
@
if
(
$parecer
!=
null
&&
$parecer
->
statusJustificativaAutorizacaoEtica
==
'aceito'
)
checked
@
endif
required
>
<
label
for
=
"recusado"
>
{{
__
(
' Recusado'
)
}}
</
label
>
<
input
type
=
"radio"
name
=
"anexoJustificativa"
value
=
"recusado"
@
if
(
$parecer
!=
null
&&
$parecer
->
statusJustificativaAutorizacaoEtica
==
'recusado'
)
checked
@
endif
>
</
div
>
{{
--
Planos
de
trabalho
--
}}
<
div
class
=
"col-sm-6"
>
<
label
for
=
"nomeTrabalho"
class
=
"col-form-label"
>
{{
__
(
'Plano de Trabalho: '
)
}}
</
label
>
<
label
for
=
"aceito"
style
=
"left: auto"
>
{{
__
(
' Aceito'
)
}}
</
label
>
<
input
type
=
"radio"
name
=
"anexoPlano"
value
=
"aceito"
@
if
(
$parecer
!=
null
&&
$parecer
->
statusPlanoTrabalho
==
'aceito'
)
checked
@
endif
required
>
<
label
for
=
"recusado"
>
{{
__
(
' Recusado'
)
}}
</
label
>
<
input
type
=
"radio"
name
=
"anexoPlano"
value
=
"recusado"
@
if
(
$parecer
!=
null
&&
$parecer
->
statusPlanoTrabalho
==
'recusado'
)
checked
@
endif
>
</
div
>
</
div
>
<
div
><
hr
></
div
>
<
div
class
=
"d-flex justify-content-end"
>
<
div
style
=
"margin-right: 15px"
><
a
href
=
"{{ route('avaliador.visualizarTrabalho', ['evento_id' =>
$evento->id
])}}"
class
=
"btn btn-light"
style
=
"color: red;"
>
Cancelar
</
a
></
div
>
<
div
><
button
type
=
"submit"
class
=
"btn btn-success"
>
Enviar
meu
parecer
</
button
></
div
>
</
div
>
</
form
>
</
div
>
</
div
>
</
div
>
</
div
>
</
div
>
@
endsection
@
section
(
'javascript'
)
<
script
type
=
"text/javascript"
>
</
script
>
@
endsection
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment