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
326985eb
Commit
326985eb
authored
Oct 19, 2022
by
unknown
Browse files
Alteração na visualização para adaptação para não mostrar os campos de area, grandeArea
parent
2decb764
Changes
3
Show whitespace changes
Inline
Side-by-side
resources/views/administrador/analisar.blade.php
View file @
326985eb
...
@@ -68,7 +68,8 @@
...
@@ -68,7 +68,8 @@
@
foreach
(
$trabalhos
as
$trabalho
)
@
foreach
(
$trabalhos
as
$trabalho
)
<!--
Informações
Proponente
-->
<!--
Informações
Proponente
-->
<
div
class
=
"row justify-content-center allTrab apareceu
{
{$trabalho->status}
}
{
{$trabalho->grandeArea->nome}
}
{
{$trabalho->area->nome}
}
"
style
=
"margin-top: 20px;"
>
<
div
class
=
"row justify-content-center allTrab apareceu"
style
=
"margin-top: 20px;"
>
<
br
>
<
br
>
<
div
class
=
"col-md-11"
onclick
=
"myFunc(
{
{$trabalho->id}
}
)"
>
<
div
class
=
"col-md-11"
onclick
=
"myFunc(
{
{$trabalho->id}
}
)"
>
<
a
href
=
"
{
{route('admin.analisarProposta',['id'=>$trabalho->id])}
}
"
id
=
"vizuProposta
{
{$trabalho->id}
}
"
hidden
></
a
>
<
a
href
=
"
{
{route('admin.analisarProposta',['id'=>$trabalho->id])}
}
"
id
=
"vizuProposta
{
{$trabalho->id}
}
"
hidden
></
a
>
...
...
resources/views/administrador/analisarProposta.blade.php
View file @
326985eb
...
@@ -70,6 +70,7 @@
...
@@ -70,6 +70,7 @@
<!--
Areas
-->
<!--
Areas
-->
<
div
class
=
"col-md-12"
>
<
div
class
=
"col-md-12"
>
<
div
class
=
"card"
style
=
"border-radius: 5px"
>
<
div
class
=
"card"
style
=
"border-radius: 5px"
>
@
if
(
$trabalho
->
evento
->
natureza_id
!=
3
)
<
div
class
=
"card-body"
style
=
"padding-top: 0.2rem;"
>
<
div
class
=
"card-body"
style
=
"padding-top: 0.2rem;"
>
<
div
class
=
"container"
>
<
div
class
=
"container"
>
<
div
class
=
"form-row mt-3"
>
<
div
class
=
"form-row mt-3"
>
...
@@ -81,10 +82,12 @@
...
@@ -81,10 +82,12 @@
@
if
(
App\SubArea
::
where
(
'id'
,
$trabalho
->
sub_area_id
)
->
first
()
!=
null
)
@
if
(
App\SubArea
::
where
(
'id'
,
$trabalho
->
sub_area_id
)
->
first
()
!=
null
)
>
{{
App\SubArea
::
where
(
'id'
,
$trabalho
->
sub_area_id
)
->
first
()
->
nome
}}
@
endif
>
{{
App\SubArea
::
where
(
'id'
,
$trabalho
->
sub_area_id
)
->
first
()
->
nome
}}
@
endif
</
h6
></
div
>
</
h6
>
</
div
>
</
div
>
</
div
>
</
div
>
</
div
>
</
div
>
</
div
>
@
endif
</
div
>
</
div
>
</
div
>
</
div
>
</
div
>
</
div
>
...
...
resources/views/projeto/formularioVisualizar/projeto2.blade.php
View file @
326985eb
...
@@ -23,19 +23,23 @@
...
@@ -23,19 +23,23 @@
<!--Areas-->
<!--Areas-->
<div
class=
"col-md-12"
>
<div
class=
"col-md-12"
>
<div
class=
"card"
style=
"border-radius: 5px"
>
<div
class=
"card"
style=
"border-radius: 5px"
>
@if($edital->natureza_id != 3)
<div
class=
"card-body"
style=
"padding-top: 0.2rem;"
>
<div
class=
"card-body"
style=
"padding-top: 0.2rem;"
>
<div
class=
"container"
>
<div
class=
"container"
>
<div
class=
"form-row mt-3"
>
<div
class=
"form-row mt-3"
>
<div
class=
"col-md-12"
><h5
style=
"color: #234B8B; font-weight: bold"
>
Área de Ensino
</h5></div>
<div
class=
"col-md-12"
><h5
style=
"color: #234B8B; font-weight: bold"
>
Área de Ensino
</h5></div>
<div
class=
"col-md-12"
><h6
style=
"color: #234B8B; margin-bottom:-0.4rem"
>
<div
class=
"col-md-12"
><h6
style=
"color: #234B8B; margin-bottom:-0.4rem"
>
{{App\GrandeArea::where('id', $projeto->grande_area_id)->first()->nome}} >
@if(App\GrandeArea::where('id', $projeto->grande_area_id)->first() != null) {{App\GrandeArea::where('id', $projeto->grande_area_id)->first()->nome}} @endif
{{App\Area::where('id', $projeto->area_id)->first()->nome}}
@if(App\Area::where('id', $projeto->area_id)->first() != null) > {{App\Area::where('id', $projeto->area_id)->first()->nome}} @endif
@if(App\SubArea::where('id', $projeto->sub_area_id)->first() != null)> {{App\SubArea::where('id', $projeto->sub_area_id)->first()->nome}}@endif
@if(App\SubArea::where('id', $projeto->sub_area_id)->first() != null)> {{App\SubArea::where('id', $projeto->sub_area_id)->first()->nome}}@endif
</h6></div>
</h6></div>
</div>
</div>
</div>
</div>
</div>
</div>
@endif
</div>
</div>
</div>
</div>
<!--X projeto X-->
<!--X projeto X-->
\ No newline at end of file
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