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
23b0f13f
"git@sites.upe.br:walter.felipe/submeta.git" did not exist on "c2c5a5994a26aa4876331851b6bd1410f254829b"
Unverified
Commit
23b0f13f
authored
Apr 14, 2023
by
Nathalia Santos
Committed by
GitHub
Apr 14, 2023
Browse files
Merge branch 'master' into master
parents
2e8febcf
bf25780c
Changes
3
Hide whitespace changes
Inline
Side-by-side
resources/views/evento/formulario/integrantes.blade.php
View file @
23b0f13f
...
@@ -34,12 +34,12 @@
...
@@ -34,12 +34,12 @@
</button>
</button>
</div>
</div>
<div
class=
"form-row"
style=
"padding: 30px;"
>
<div
class=
"form-row
d-flex align-items-end
"
style=
"padding: 30px;"
>
<div
class=
"col-md-8"
>
<div
class=
"col-md-8"
>
<label
for=
"cpf_consulta"
>
CPF:
</label>
<label
for=
"cpf_consulta"
>
CPF:
</label>
<input
type=
"text"
id=
"cpf_consulta"
name=
"cpf_consulta"
class=
"form-control"
onkeyup=
"mask_cpf();"
>
<input
type=
"text"
id=
"cpf_consulta"
name=
"cpf_consulta"
class=
"form-control"
onkeyup=
"mask_cpf();"
>
</div>
</div>
<div
class=
"col-md-4
mt-4
"
>
<div
class=
"col-md-4"
>
<button
type=
"button"
class=
"btn btn-primary"
onclick=
"preencherUsuarioExistente()"
>
Adicionar
</button>
<button
type=
"button"
class=
"btn btn-primary"
onclick=
"preencherUsuarioExistente()"
>
Adicionar
</button>
</div>
</div>
</div>
</div>
...
...
resources/views/projeto/formularioVisualizar/integrantes.blade.php
View file @
23b0f13f
...
@@ -16,6 +16,38 @@
...
@@ -16,6 +16,38 @@
<div
class=
"col-sm-5 mt-4"
>
<div
class=
"col-sm-5 mt-4"
>
<h5
class=
"mb-0"
>
Nome: {{ $trabalho_user->user->name }}
</h5>
<h5
class=
"mb-0"
>
Nome: {{ $trabalho_user->user->name }}
</h5>
<h5
class=
"mb-0"
>
Função: {{ $trabalho_user->funcao->nome }}
</h5>
<h5
class=
"mb-0"
>
Função: {{ $trabalho_user->funcao->nome }}
</h5>
<h6>
<a
href=
""
data-toggle=
"modal"
data-target=
"#modalVizuIntegrante{{$trabalho_user->id}}"
class=
"button"
>
Informações
</a>
</h6>
</div>
<div
class=
"modal fade"
id=
"modalVizuIntegrante{{$trabalho_user->id}}"
tabindex=
"-1"
role=
"dialog"
aria-labelledby=
"exampleModalLabel"
aria-hidden=
"true"
>
<div
class=
"modal-dialog modal-dialog-centered modal-xl"
>
<div
class=
"modal-content"
>
<div
class=
"modal-header"
style=
"overflow-x:auto; padding-left: 31px"
>
<h5
class=
"modal-title"
id=
"exampleModalLabel"
style=
"color:#1492E6"
>
Informações Integrante
</h5>
<button
type=
"button"
class=
"close"
data-dismiss=
"modal"
aria-label=
"Close"
style=
"padding-top: 8px; color:#1492E6"
>
<span
aria-hidden=
"true"
>
×
</span>
</button>
</div>
<div
class=
"modal-body"
style=
"padding-right: 32px;padding-left: 32px;padding-top: 20px;padding-bottom: 32px;"
>
<div
class=
"container-fluid"
>
<div
class=
"col-sm-5 mt-4"
>
<h5
class=
"mb-0"
>
Nome: {{ $trabalho_user->user->name }}
</h5>
<h5
class=
"mb-0"
>
E-mail: {{ $trabalho_user->user->email }}
</h5>
<h5
class=
"mb-0"
>
Instituição: {{ $trabalho_user->user->instituicao }}
</h5>
<h5
class=
"mb-0"
>
Cargo no projeto: {{ $trabalho_user->funcao->nome }}
</h5>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
@endforeach
@endforeach
...
...
resources/views/proponente/projetos.blade.php
View file @
23b0f13f
...
@@ -87,7 +87,11 @@
...
@@ -87,7 +87,11 @@
<
td
style
=
"text-align: center"
>
{{
date
(
'd-m-Y \à\s H:i\h'
,
strtotime
(
$projeto
->
updated_at
))
}}
</
td
>
<
td
style
=
"text-align: center"
>
{{
date
(
'd-m-Y \à\s H:i\h'
,
strtotime
(
$projeto
->
updated_at
))
}}
</
td
>
@
if
(
$projeto
->
status
!=
null
)
@
if
(
$projeto
->
status
!=
null
)
@
if
(
$projeto
->
status
===
"aprovado"
)
@
if
(
$projeto
->
status
===
"aprovado"
)
<
td
style
=
"color: rgb(6, 85, 6); text-align: center;text-transform: capitalize;"
>
Em
Execução
</
td
>
@
if
(
strtotime
(
$projeto
->
updated_at
)
<=
strtotime
(
$projeto
->
fimProjeto
))
<
td
style
=
"color: rgb(6, 85, 6); text-align: center;text-transform: capitalize;"
>
Finalizado
</
td
>
@
else
<
td
style
=
"color: rgb(6, 85, 6); text-align: center;text-transform: capitalize;"
>
Em
Execução
</
td
>
@
endif
@
else
@
else
<
td
style
=
"color: rgb(6, 85, 6); text-align: center;text-transform: capitalize;"
>
{{
$projeto
->
status
}}
</
td
>
<
td
style
=
"color: rgb(6, 85, 6); text-align: center;text-transform: capitalize;"
>
{{
$projeto
->
status
}}
</
td
>
@
endif
@
endif
...
...
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