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
63dd8d25
Commit
63dd8d25
authored
Aug 06, 2021
by
José Rômulo
Browse files
Correções tela de resultado
parent
f0a74ad5
Changes
3
Show whitespace changes
Inline
Side-by-side
resources/views/administrador/resultadosProjetos.blade.php
View file @
63dd8d25
...
...
@@ -34,10 +34,10 @@
<
thead
>
<
tr
>
<
th
scope
=
"col"
style
=
"width: 100%;"
>
Nome
do
projeto
</
th
>
<
th
scope
=
"col"
>
Autor
</
th
>
<
th
scope
=
"col"
>
Proponente
</
th
>
<
th
scope
=
"col"
>
Área
</
th
>
<
th
scope
=
"col"
>
N
.
Planos
</
th
>
<
th
scope
=
"col"
>
Av
.
Externo
</
th
>
<
th
scope
=
"col"
>
Av
aliador
Externo
</
th
>
<
th
scope
=
"col"
>
Status
</
th
>
</
tr
>
</
thead
>
...
...
@@ -61,16 +61,9 @@
{{
$trabalho
->
avaliadors
->
first
()
->
user
->
name
}}
@
endif
</
td
>
@
if
(
$trabalho
->
avaliadors
->
first
()
->
pivot
->
recomendacao
==
'RECOMENDADO'
)
<
td
style
=
"color:rgb(6, 85, 6)"
>
APROVADO
</
td
>
@
elseif
(
$trabalho
->
avaliadors
->
first
()
->
pivot
->
recomendacao
==
'NAO-RECOMENDADO'
)
<
td
style
=
"color: darkred"
>
REPROVADO
</
td
>
@
else
@
if
(
$trabalho
->
avaliadors
->
count
()
>
0
)
<
td
>
{{
$trabalho
->
avaliadors
->
first
()
->
pivot
->
recomendacao
}}
</
td
>
@
endif
</
tr
>
...
...
resources/views/coordenadorComissao/editais.blade.php
View file @
63dd8d25
...
...
@@ -50,6 +50,10 @@
<
a
href
=
"{{route('admin.analisar', ['evento_id' =>
$evento->id
])}}"
class
=
"dropdown-item text-center"
>
Analisar
projetos
</
a
>
<
hr
class
=
"dropdown-hr"
>
<
a
href
=
"{{route('admin.showResultados', ['evento_id' =>
$evento->id
])}}"
class
=
"dropdown-item text-center"
>
Resultados
</
a
>
<
hr
class
=
"dropdown-hr"
>
<!--
Button
trigger
modal
-->
<
button
type
=
"button"
class
=
"dropdown-item dropdown-item-delete text-center"
data
-
toggle
=
"modal"
data
-
target
=
"#exampleModal{{
$evento->id
}}"
>
...
...
resources/views/proponente/projetos.blade.php
View file @
63dd8d25
...
...
@@ -197,13 +197,15 @@
</
div
>
<
div
class
=
"row"
>
<
div
class
=
"col-12"
>
@
if
(
$projeto
->
avaliadors
->
count
()
>
0
)
@
if
(
$projeto
->
avaliadors
->
first
()
->
pivot
->
recomendacao
==
'RECOMENDADO'
)
<
input
type
=
"text"
class
=
"form-control"
value
=
"
APROV
ADO"
disabled
style
=
"color:rgb(6, 85, 6)"
>
<
input
type
=
"text"
class
=
"form-control"
value
=
"
RECOMEND
ADO"
disabled
style
=
"color:rgb(6, 85, 6)"
>
@
elseif
(
$projeto
->
avaliadors
->
first
()
->
pivot
->
recomendacao
==
'NAO-RECOMENDADO'
)
<
input
type
=
"text"
class
=
"form-control"
value
=
"
REPROV
ADO"
disabled
style
=
"color: darkred"
>
<
input
type
=
"text"
class
=
"form-control"
value
=
"
NAO-RECOMEND
ADO"
disabled
style
=
"color: darkred"
>
@
else
<
input
type
=
"text"
class
=
"form-control"
value
=
""
disabled
>
@
endif
@
endif
</
div
>
</
div
>
...
...
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