Skip to content
GitLab
Menu
Projects
Groups
Snippets
Help
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
26294eaf
Commit
26294eaf
authored
3 years ago
by
Guilherme Silva
Browse files
Options
Download
Email Patches
Plain Diff
Adicionado inclusão de area tematica em propostas que são extensão
parent
c563ef1d
master
carl-branch
dependabot/composer/dompdf/dompdf-1.2.2
dependabot/composer/guzzlehttp/guzzle-6.5.8
dependabot/composer/symfony/http-kernel-4.4.50
dependabot/npm_and_yarn/decode-uri-component-0.2.2
dependabot/npm_and_yarn/express-4.18.2
dependabot/npm_and_yarn/json5-and-json5-2.2.3
dependabot/npm_and_yarn/loader-utils-and-webpack-cli-1.4.2
dependabot/npm_and_yarn/minimist-and-mkdirp-1.2.8
dependabot/npm_and_yarn/qs-and-express-6.11.0
excluir_projeto_submetido
updates_mar
No related merge requests found
Changes
2
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
resources/views/evento/formulario/projeto.blade.php
+17
-0
resources/views/evento/formulario/projeto.blade.php
resources/views/projeto/editaFormulario/projeto.blade.php
+17
-0
resources/views/projeto/editaFormulario/projeto.blade.php
with
34 additions
and
0 deletions
+34
-0
resources/views/evento/formulario/projeto.blade.php
View file @
26294eaf
...
...
@@ -67,6 +67,23 @@
</span>
@enderror
</div>
@if($edital->natureza_id ==3 )
<div
class=
"form-group col-md-4"
>
<label
for=
"areaTematica"
class=
"col-form-label"
style=
"font-weight: bold"
>
{{ __('Área Temática') }}
<span
style=
"color: red; font-weight:bold"
>
*
</span></label>
<select
class=
"form-control @error('area_tematica_id') is-invalid @enderror"
id=
"areaTematica"
name=
"area_tematica_id"
>
<option
value=
""
disabled
selected
hidden
>
-- Área Tematica--
</option>
@foreach($areaTematicas as $areaTematica)
<option
@
if
(
old
('
area_tematica_id
')
!==
null
?
old
('
area_tematica_id
')
:
(
isset
($
rascunho
)
?
$
rascunho-
>
area_tematica_id : '')
== $areaTematica->id ) selected @endif value="{{$areaTematica->id}}">{{$areaTematica->nome}}
</option>
@endforeach
</select>
@error('area_tematica_id')
<span
class=
"invalid-feedback"
role=
"alert"
style=
"overflow: visible; display:block"
>
<strong>
{{ $message }}
</strong>
</span>
@enderror
</div>
@endif
</div>
</div>
...
...
This diff is collapsed.
Click to expand it.
resources/views/projeto/editaFormulario/projeto.blade.php
View file @
26294eaf
...
...
@@ -68,6 +68,23 @@
</span>
@enderror
</div>
@if($edital->natureza_id ==3 )
<div
class=
"form-group col-md-4"
>
<label
for=
"areaTematica"
class=
"col-form-label"
style=
"font-weight: bold"
>
{{ __('Área Temática') }}
<span
style=
"color: red; font-weight:bold"
>
*
</span></label>
<select
class=
"form-control @error('area_tematica_id') is-invalid @enderror"
id=
"areaTematica"
name=
"area_tematica_id"
>
<option
value=
""
disabled
selected
hidden
>
-- Área Tematica--
</option>
@foreach($areaTematicas as $areaTematica)
<option
@
if
(
old
('
area_tematica_id
')
!==
null
?
old
('
area_tematica_id
')
:
(
isset
($
rascunho
)
?
$
rascunho-
>
area_tematica_id : '')
== $areaTematica->id ) selected @endif @if($projeto->area_tematica_id == $areaTematica->id ) selected @endif value="{{$areaTematica->id}}">{{$areaTematica->nome}}
</option>
@endforeach
</select>
@error('area_tematica_id')
<span
class=
"invalid-feedback"
role=
"alert"
style=
"overflow: visible; display:block"
>
<strong>
{{ $message }}
</strong>
</span>
@enderror
</div>
@endif
</div>
</div>
...
...
This diff is collapsed.
Click to expand it.
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
Menu
Projects
Groups
Snippets
Help