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
8a9b62b1
Commit
8a9b62b1
authored
Feb 17, 2023
by
Lucas Henrique
Browse files
Merge branch 'master' of
https://github.com/Wolf-gangSE/submeta
into merge-master
parents
78b99673
6ac4a6d1
Changes
25
Expand all
Hide whitespace changes
Inline
Side-by-side
resources/views/projeto/editaFormulario/integrantes.blade.php
0 → 100644
View file @
8a9b62b1
This diff is collapsed.
Click to expand it.
resources/views/projeto/editar.blade.php
View file @
8a9b62b1
...
...
@@ -38,6 +38,10 @@
@
include
(
'projeto.editaFormulario.participantes'
)
@
endif
@
if
(
$edital
->
natureza_id
==
3
)
@
include
(
'projeto.editaFormulario.integrantes'
)
@
endif
@
include
(
'projeto.editaFormulario.anexos'
)
@
include
(
'projeto.editaFormulario.finalizar'
)
...
...
resources/views/projeto/formularioVisualizar/integrantes.blade.php
0 → 100644
View file @
8a9b62b1
<!-- Participantes -->
<div
class=
"col-md-12"
style=
"margin-top: 20px"
>
<div
class=
"card"
style=
"border-radius: 5px"
>
<div
class=
"card-body"
style=
"padding-top: 0.2rem;"
>
<div
class=
"container"
>
<div
class=
"form-row mt-3"
>
<div
class=
"col-sm-8"
><h5
style=
"color: #234B8B; font-weight: bold"
>
Integrantes
</h5></div>
</div>
<hr
style=
"border-top: 1px solid#1492E6"
>
<div
class=
"row justify-content-start"
style=
"alignment: center"
>
@foreach($trabalhos_user as $trabalho_user)
<div
class=
"col-sm-1 mt-4"
>
<img
src=
"{{asset('img/icons/usuario.svg')}}"
style=
"width:60px"
alt=
""
>
</div>
<div
class=
"col-sm-5 mt-4"
>
<h5
class=
"mb-0"
>
Nome: {{ $trabalho_user->user->name }}
</h5>
<h5
class=
"mb-0"
>
Função: {{ $trabalho_user->funcao->nome }}
</h5>
</div>
@endforeach
</div>
</div>
</div>
</div>
</div>
<!--X Participantes X-->
resources/views/projeto/visualizar.blade.php
View file @
8a9b62b1
...
...
@@ -37,6 +37,11 @@
@
endcomponent
@
endif
@
if
(
$edital
->
natureza_id
==
3
)
@
component
(
'projeto.formularioVisualizar.integrantes'
,
[
'projeto'
=>
$projeto
,
'edital'
=>
$edital
,
'trabalhos_user'
=>
$trabalhos_user
])
@
endcomponent
@
endif
@
component
(
'projeto.formularioVisualizar.relatorio'
,[
'edital'
=>
$edital
,
'projeto'
=>
$projeto
,
'flagSubstituicao'
=>
$flagSubstituicao
])
@
endcomponent
...
...
routes/web.php
View file @
8a9b62b1
This diff is collapsed.
Click to expand it.
Prev
1
2
Next
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