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
d249f834
Commit
d249f834
authored
Aug 12, 2022
by
GuilhermeGz
Browse files
Alterações em telas para exibição da pendencia em solicitações de substituição
parent
013f1824
Changes
7
Show whitespace changes
Inline
Side-by-side
resources/views/administrador/analisarProposta.blade.php
View file @
d249f834
...
...
@@ -15,6 +15,11 @@
<
strong
>
{{
session
(
'sucesso'
)
}}
</
strong
>
</
div
>
@
endif
@
if
(
$errors
->
any
())
<
div
class
=
"alert alert-danger mt-1"
>
{{
$errors
->
first
()}}
</
div
>
@
endif
<
div
class
=
"card"
style
=
"border-radius: 5px"
>
<
div
class
=
"card-body"
style
=
"padding-top: 0.2rem;"
>
<
div
class
=
"container"
>
...
...
@@ -178,6 +183,7 @@
<
div
class
=
"modal-header"
style
=
"overflow-x:auto; padding-left: 31px"
>
<
h5
class
=
"modal-title"
id
=
"exampleModalLabel"
style
=
"color:#1492E6"
>
Informações
Participante
@
if
(
isset
(
$participante
->
planoTrabalho
))
@
if
(
$participante
->
planoTrabalho
->
arquivado
==
false
)
<
a
title
=
"Arquivar"
href
=
'javascript:arquivar1{{$participante->id}}.submit()'
>
...
...
@@ -197,6 +203,7 @@
<
input
value
=
'0'
name
=
'arquivar_tipo'
type
=
'hidden'
/>
</
form
>
@
endif
@
endif
</
h5
>
<
button
type
=
"button"
class
=
"close"
data
-
dismiss
=
"modal"
...
...
@@ -496,8 +503,13 @@
<
div
class
=
"form-row mt-3"
>
<
div
class
=
"col-sm-9"
><
h5
style
=
"color: #234B8B; font-weight: bold"
>
Relatórios
</
h5
></
div
>
<
div
class
=
"col-sm-3 text-sm-right"
>
@
if
(
$flagSubstituicao
==
1
)
<
a
href
=
"{{route('planos.listar', ['id' =>
$trabalho->id
])}}"
class
=
"button"
>
Listar
Relatórios
</
a
>
@
else
<
a
href
=
"{{route('planos.listar', ['id' =>
$trabalho->id
])}}"
class
=
"button"
title
=
"Existe uma Substituição pendente"
style
=
"color: red"
>
Listar
Relatórios
</
a
>
@
endif
</
div
>
</
div
>
<
hr
style
=
"border-top: 1px solid#1492E6"
>
...
...
@@ -570,7 +582,7 @@
<
div
class
=
"modal-header modal-header-submeta"
>
<
div
class
=
"col-md-8"
style
=
"padding-left: 0px"
>
<
h5
class
=
"modal-title titulo-table"
id
=
"avaliacaoModalLongTitle"
>
Seleciones
o
(
s
)
avaliador
(
es
)
</
h5
>
@
if
(
isset
(
$participante
->
planoTrabalho
))
Seleciones
o
(
s
)
avaliador
(
es
)
@
else
Pendências
de
Substituição
@
endif
</
h5
>
</
div
>
<
div
class
=
"col-md-4"
style
=
"text-align: right"
>
<
button
type
=
"button"
class
=
"close"
aria
-
label
=
"Close"
...
...
@@ -580,6 +592,7 @@
</
button
>
</
div
>
</
div
>
@
if
(
isset
(
$participante
->
planoTrabalho
))
<
div
class
=
"modal-body"
>
@
if
(
session
(
'error'
))
<
div
class
=
"col-md-12"
>
...
...
@@ -648,6 +661,11 @@
</
form
>
</
div
>
@
else
<
div
class
=
"modal-body"
>
<
h4
>
Existem
solicitações
de
substituição
pendentes
,
por
favor
verifique
-
as
antes
de
prosseguir
</
h4
>
</
div
>
@
endif
</
div
>
</
div
>
</
div
>
...
...
resources/views/avaliador/listarTrabalhos.blade.php
View file @
d249f834
...
...
@@ -3,6 +3,15 @@
@
section
(
'content'
)
<
div
class
=
"container"
>
@
if
(
$errors
->
any
())
<
div
class
=
"col-sm-12"
>
<
br
>
<
div
class
=
"alert alert-danger"
>
<
p
>
{{
$errors
->
first
()}}
</
p
>
</
div
>
</
div
>
@
endif
@
if
(
isset
(
$mensagem
))
<
div
class
=
"col-sm-12"
>
<
br
>
...
...
resources/views/projeto/formularioVisualizar/participantes2.blade.php
View file @
d249f834
...
...
@@ -22,7 +22,7 @@
</div>
<div
class=
"col-sm-5 mt-4"
>
<h5
class=
"mb-0"
>
Nome: {{$participante->user->name}}
</h5>
<h5
class=
"mb-0"
>
Plano: {{$participante->planoTrabalho->titulo}}
</h5>
<h5
class=
"mb-0"
>
Plano:
@if(isset($participante->planoTrabalho))
{{$participante->planoTrabalho->titulo}}
@else Plano Em Substituição @endif
</h5>
<h6>
<a
href=
""
data-toggle=
"modal"
data-target=
"#modalVizuParticipante{{$participante->id}}"
class=
"button"
>
Informações
</a>
</h6>
...
...
resources/views/projeto/formularioVisualizar/relat
ó
rio.blade.php
→
resources/views/projeto/formularioVisualizar/relat
o
rio.blade.php
View file @
d249f834
...
...
@@ -6,7 +6,12 @@
<div
class=
"form-row mt-3"
>
<div
class=
"col-sm-9"
><h5
style=
"color: #234B8B; font-weight: bold"
>
Relatórios
</h5></div>
<div
class=
"col-sm-3 text-sm-right"
>
@if($flagSubstituicao == 1)
<a
href=
"{{route('planos.listar', ['id' => $projeto->id])}}"
class=
"button"
>
Listar Relatórios
</a>
@else
<a
href=
"{{route('planos.listar', ['id' => $projeto->id])}}"
class=
"button"
title=
"Existe uma Substituição pendente"
style=
"color: red"
>
Listar Relatórios
</a>
@endif
</div>
</div>
<hr
style=
"border-top: 1px solid#1492E6"
>
...
...
resources/views/projeto/visualizar.blade.php
View file @
d249f834
...
...
@@ -14,6 +14,11 @@
{{
session
(
'mensagem'
)
}}
</
div
>
@
endif
@
if
(
$errors
->
any
())
<
div
class
=
"alert alert-danger mt-1"
>
{{
$errors
->
first
()}}
</
div
>
@
endif
<
div
class
=
"row justify-content-center"
style
=
"margin-top: 4rem"
>
...
...
@@ -30,7 +35,7 @@
@
component
(
'projeto.formularioVisualizar.participantes2'
,
[
'projeto'
=>
$projeto
,
'edital'
=>
$edital
])
@
endcomponent
@
component
(
'projeto.formularioVisualizar.relat
ó
rio'
,[
'edital'
=>
$edital
,
'projeto'
=>
$projeto
])
@
component
(
'projeto.formularioVisualizar.relat
o
rio'
,[
'edital'
=>
$edital
,
'projeto'
=>
$projeto
,
'flagSubstituicao'
=>
$flagSubstituicao
])
@
endcomponent
@
component
(
'projeto.formularioVisualizar.resultado2'
,
...
...
resources/views/proponente/projetos.blade.php
View file @
d249f834
...
...
@@ -3,6 +3,15 @@
@
section
(
'content'
)
<
div
class
=
"container"
>
@
if
(
$errors
->
any
())
<
div
class
=
"col-sm-12"
>
<
br
>
<
div
class
=
"alert alert-danger"
>
<
p
>
{{
$errors
->
first
()}}
</
p
>
</
div
>
</
div
>
@
endif
@
if
(
isset
(
$mensagem
))
<
div
class
=
"col-sm-12"
>
<
br
>
...
...
resources/views/proponente/projetosEdital.blade.php
View file @
d249f834
...
...
@@ -3,6 +3,14 @@
@
section
(
'content'
)
<
div
class
=
"container"
>
@
if
(
$errors
->
any
())
<
div
class
=
"col-sm-12"
>
<
br
>
<
div
class
=
"alert alert-danger"
>
<
p
>
{{
$errors
->
first
()}}
</
p
>
</
div
>
</
div
>
@
endif
@
if
(
isset
(
$mensagem
))
<
div
class
=
"col-sm-12"
>
<
br
>
...
...
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