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
2361c669
"app/Http/Controllers/AvaliadorController.php" did not exist on "61006e34b7a86388bf775994a0d7e1af2856f26b"
Commit
2361c669
authored
Jun 16, 2021
by
Danillo Bion
Browse files
modificacoes na tela - meu parecer - avaliador
parent
b9308708
Changes
2
Show whitespace changes
Inline
Side-by-side
resources/views/avaliador/listarPlanos.blade.php
View file @
2361c669
...
@@ -55,7 +55,7 @@
...
@@ -55,7 +55,7 @@
@
foreach
(
$planos
as
$plano
)
@
foreach
(
$planos
as
$plano
)
<
tr
>
<
tr
>
<
td
>
{{
$plano
->
titulo
}}
</
td
>
<
td
>
{{
$plano
->
titulo
}}
</
td
>
<
td
>
{{
$plano
->
created_at
->
format
(
'd/m/Y'
)
}}
</
td
>
<
td
style
=
"text-align: center"
>
{{
$plano
->
created_at
->
format
(
'd/m/Y'
)
}}
</
td
>
{{
--
<
td
>
{{
--
<
td
>
<
a
href
=
"{{route('download', ['file' =>
$trabalho->anexoProjeto
])}}"
target
=
"_new"
style
=
"font-size: 20px; color: #114048ff;"
>
<
a
href
=
"{{route('download', ['file' =>
$trabalho->anexoProjeto
])}}"
target
=
"_new"
style
=
"font-size: 20px; color: #114048ff;"
>
<
img
class
=
""
src
=
"
{
{asset('img/icons/file-download-solid.svg')}
}
"
style
=
"width:20px"
>
<
img
class
=
""
src
=
"
{
{asset('img/icons/file-download-solid.svg')}
}
"
style
=
"width:20px"
>
...
...
resources/views/avaliador/parecerPlano.blade.php
View file @
2361c669
@
extends
(
'layouts.app'
)
@
extends
(
'layouts.app'
)
@
section
(
'content'
)
@
section
(
'content'
)
<
div
class
=
"container content"
>
<
div
class
=
"row justify-content-center"
>
<
div
class
=
"container"
>
<
div
class
=
"col-sm-12"
>
<
div
class
=
"card"
style
=
"margin-top:50px"
>
<
div
class
=
"row justify-content-center"
style
=
"margin-top: 3rem;"
>
<
div
class
=
"card-body"
>
<
div
class
=
"col-md-11"
style
=
"margin-bottom: -3rem"
>
<
h5
class
=
"card-title"
>
Meu
Parecer
</
h5
>
<
div
class
=
"card card_conteudo shadow bg-white"
style
=
"border-radius:12px; border-width:0px;"
>
<
h6
class
=
"card-title"
>
Plano
:
{{
$plano
->
titulo
}}
</
h6
>
<
div
class
=
"card-header"
style
=
"border-top-left-radius: 12px; border-top-right-radius: 12px; background-color: #fff"
>
<
p
class
=
"card-text"
>
<
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"
>
Meu
parecer
</
h5
>
<
h5
class
=
"card-title mb-0"
style
=
"font-size:19px; font-family:Arial, Helvetica, sans-serif; color:#909090"
>
Plano
:
{{
$plano
->
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.enviarParecerPlano')}
}
"
enctype
=
"multipart/form-data"
>
<
form
method
=
"POST"
action
=
"
{
{route('avaliador.enviarParecerPlano')}
}
"
enctype
=
"multipart/form-data"
>
@
csrf
@
csrf
<
input
type
=
"hidden"
name
=
"plano_id"
value
=
"{{
$plano->id
}}"
>
<
input
type
=
"hidden"
name
=
"plano_id"
value
=
"{{
$plano->id
}}"
>
<
input
type
=
"hidden"
name
=
"evento_id"
value
=
"{{
$evento->id
}}"
>
<
input
type
=
"hidden"
name
=
"evento_id"
value
=
"{{
$evento->id
}}"
>
<
div
class
=
"form-group"
>
<
div
class
=
"form-group"
>
<
label
for
=
"exampleFormControlTextarea1"
>
Parecer
:</
label
>
<
label
for
=
"exampleFormControlTextarea1"
>
Parecer
:</
label
>
<
textarea
class
=
"form-control"
id
=
"exampleFormControlTextarea1"
rows
=
"3"
name
=
"textParecer"
>
{{
$plano
->
pivot
->
parecer
}}
</
textarea
>
<
textarea
class
=
"form-control"
id
=
"exampleFormControlTextarea1"
rows
=
"3"
name
=
"textParecer"
placeholder
=
"Digite aqui o seu parecer"
>
{{
$plano
->
pivot
->
parecer
}}
</
textarea
>
</
div
>
</
div
>
<
select
class
=
"custom-select"
name
=
"recomendacao"
>
<
select
class
=
"custom-select"
name
=
"recomendacao"
>
@
foreach
(
$recomendacaos
as
$recomendacao
)
@
foreach
(
$recomendacaos
as
$recomendacao
)
...
@@ -33,26 +51,43 @@
...
@@ -33,26 +51,43 @@
<
input
type
=
"file"
class
=
"form-control-file"
id
=
"exampleFormControlFile1"
name
=
"anexoParecer"
>
<
input
type
=
"file"
class
=
"form-control-file"
id
=
"exampleFormControlFile1"
name
=
"anexoParecer"
>
@
else
@
else
<
label
for
=
"exampleFormControlFile1"
>
Já
existe
um
arquivo
,
quer
atualizar
?</
label
>
<
div
class
=
"form-row"
>
<
br
>
<
label
for
=
"exampleFormControlFile1"
>
Arquivo
atual
:</
label
>
<
div
class
=
"col-md-12"
>
<
a
href
=
"{{route('download', ['file' =>
$plano->pivot
->AnexoParecer])}}"
target
=
"_new"
style
=
"font-size: 20px; color: #114048ff;"
>
<
h6
>
Arquivo
atual
</
h6
>
<
img
class
=
""
src
=
"
{
{asset('img/icons/file-download-solid.svg')}
}
"
style
=
"width:20px"
>
</
div
>
</
a
><
br
>
<
div
class
=
"col-md-12 form-group"
>
<
div
>
<
a
href
=
"{{route('download', ['file' =>
$plano->pivot
->AnexoParecer])}}"
target
=
"_new"
style
=
"font-size: 18px;;"
class
=
"btn btn-light"
>
<
img
class
=
""
src
=
"
{
{asset('img/icons/file-download-solid.svg')}
}
"
style
=
"width:20px; margin:5px"
>
Baixar
arquivo
atual
</
a
>
</
div
>
</
div
>
</
div
>
<
div
class
=
"form-row"
>
<
div
class
=
"col-md-12"
>
<
h6
>
Alterar
arquivo
atual
</
h6
>
</
div
>
<
div
class
=
"col-md-12 form-group"
>
<
div
>
<
input
type
=
"file"
class
=
"form-control-file"
id
=
"exampleFormControlFile1"
name
=
"anexoParecer"
>
<
input
type
=
"file"
class
=
"form-control-file"
id
=
"exampleFormControlFile1"
name
=
"anexoParecer"
>
</
div
>
</
div
>
</
div
>
@
endif
@
endif
</
div
>
</
div
>
<
button
type
=
"submit"
class
=
"btn btn-primary"
>
Enviar
</
button
>
<
div
><
hr
></
div
>
<
a
href
=
"{{ route('avaliador.visualizarTrabalho', ['evento_id' =>
$evento->id
])}}"
class
=
"btn btn-danger"
>
Cancelar
</
a
>
<
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
>
</
form
>
</
div
>
</
div
>
</
div
>
</
div
>
</
div
>
</
div
>
</
div
>
</
div
>
</
div
>
</
div
>
@
endsection
@
endsection
@
section
(
'javascript'
)
@
section
(
'javascript'
)
...
...
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