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
ea1fafc1
Commit
ea1fafc1
authored
May 18, 2023
by
Yuri Resende
Browse files
Inserindo informações extras na visualização dos projetos da extensão
parent
80fff3de
Changes
1
Hide whitespace changes
Inline
Side-by-side
resources/views/administrador/analisarProposta.blade.php
View file @
ea1fafc1
...
@@ -54,22 +54,38 @@
...
@@ -54,22 +54,38 @@
</
div
>
</
div
>
<
div
class
=
"col-md-12"
>
<
div
class
=
"col-md-12"
>
<
h5
style
=
"color: #1492E6;"
>
{{
$trabalho
->
titulo
}}
@
if
(
Auth
::
user
()
->
tipo
==
'administrador'
)
@
if
(
Auth
::
user
()
->
tipo
==
'administrador'
)
<
a
class
=
"ml-2 mb-5"
href
=
"{{ route('trabalho.editar', ['id' =>
$trabalho->id
]) }}"
>
<
a
class
=
"ml-2 mb-5"
href
=
"{{ route('trabalho.editar', ['id' =>
$trabalho->id
]) }}"
>
<
svg
xmlns
=
"http://www.w3.org/2000/svg"
width
=
"24"
height
=
"24"
viewBox
=
"0 0 24 24"
fill
=
"none"
stroke
=
"#234B8B"
stroke
-
width
=
"2"
stroke
-
linecap
=
"round"
stroke
-
linejoin
=
"round"
><
path
d
=
"M20 14.66V20a2 2 0 0 1-2 2H4a2 2 0 0 1-2-2V6a2 2 0 0 1 2-2h5.34"
></
path
><
polygon
points
=
"18 2 22 6 12 16 8 16 8 12 18 2"
></
polygon
></
svg
>
<
svg
xmlns
=
"http://www.w3.org/2000/svg"
width
=
"24"
height
=
"24"
viewBox
=
"0 0 24 24"
fill
=
"none"
stroke
=
"#234B8B"
stroke
-
width
=
"2"
stroke
-
linecap
=
"round"
stroke
-
linejoin
=
"round"
><
path
d
=
"M20 14.66V20a2 2 0 0 1-2 2H4a2 2 0 0 1-2-2V6a2 2 0 0 1 2-2h5.34"
></
path
><
polygon
points
=
"18 2 22 6 12 16 8 16 8 12 18 2"
></
polygon
></
svg
>
</
a
>
</
a
>
@
endif
@
endif
</
h5
>
</
div
>
</
div
>
@
if
(
$evento
->
natureza
==
3
)
<
div
class
=
"col-md-12"
>
<
p
><
b
>
Edital
:
</
b
>
{{
$evento
->
nome
}}
</
p
>
</
div
>
<
div
class
=
"col-md-12"
>
<
p
><
b
>
Título
:
</
b
>
{{
$trabalho
->
titulo
}}
</
p
>
</
div
>
@
if
(
$evento
->
natureza_id
==
3
)
<
div
class
=
"col-md-12"
>
<
p
style
=
"color: #4D4D4D; padding: 0px"
>
<
b
>
Proponente
:</
b
>
{{
App\Proponente
::
find
(
$trabalho
->
proponente_id
)
->
user
->
name
}}
</
p
>
</
div
>
<
div
class
=
"col-md-12"
>
<
div
class
=
"col-md-12"
>
<
p
><
b
>
Área
temática
:
</
b
>
{{
$trabalho
->
areaTematica
->
nome
}}
</
p
>
<
p
><
b
>
Área
temática
:
</
b
>
{{
$trabalho
->
areaTematica
->
nome
}}
</
p
>
</
div
>
</
div
>
@
endif
<
div
class
=
"col-md-12"
><
h6
<
div
class
=
"col-md-12"
>
style
=
"color: #234B8B; margin-bottom:-0.4rem; font-weight: bold"
>
{{
$evento
->
nome
}}
</
h6
>
<
p
><
b
>
ODS
:
</
b
></
p
>
@
foreach
(
$trabalho
->
ods
as
$ods
)
<
p
>-
{{
$ods
->
nome
}}
</
p
>
@
endforeach
</
div
>
</
div
>
@
endif
</
div
>
</
div
>
</
div
>
</
div
>
</
div
>
</
div
>
...
@@ -100,6 +116,7 @@
...
@@ -100,6 +116,7 @@
</
div
>
</
div
>
</
div
>
</
div
>
<!--
Informações
Proponente
-->
<!--
Informações
Proponente
-->
@
if
(
$evento
->
natureza_id
!=
3
)
<
div
class
=
"row justify-content-center"
style
=
"margin-top: 20px;"
>
<
div
class
=
"row justify-content-center"
style
=
"margin-top: 20px;"
>
<
br
>
<
br
>
<
div
class
=
"col-md-12"
>
<
div
class
=
"col-md-12"
>
...
@@ -179,6 +196,7 @@
...
@@ -179,6 +196,7 @@
</
div
>
</
div
>
</
div
>
</
div
>
</
div
>
</
div
>
@
endif
<!--
Discentes
-->
<!--
Discentes
-->
@
if
(
$evento
->
numParticipantes
!=
0
)
@
if
(
$evento
->
numParticipantes
!=
0
)
<
div
class
=
"row justify-content-center"
style
=
"margin-top: 20px;"
>
<
div
class
=
"row justify-content-center"
style
=
"margin-top: 20px;"
>
...
...
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