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
b2713aa6
Commit
b2713aa6
authored
Apr 20, 2022
by
Guilherme Silva
Browse files
Atualização do card de informações do proponente no editar proposta
parent
7c769051
Changes
1
Hide whitespace changes
Inline
Side-by-side
resources/views/projeto/editaFormulario/proponente.blade.php
View file @
b2713aa6
<!-- Proponente -->
<div
class=
"col-md-10"
style=
"text-align: center; margin-top:2rem"
><h4
style=
"margin-top: 1rem;"
>
2º Passo
</h4></div>
<div
class=
"col-md-10"
style=
"text-align: center;"
><h5
style=
"margin-bottom:1rem;color:#909090"
>
Preencha os campos com as informações do proponente
</h5></div>
<div
class=
"col-md-10"
>
<div
class=
"card"
style=
"border-radius: 12px"
>
<div
class=
"card-body"
>
<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-md-12"
><h5
style=
"color: #1492E6; margin-bottom:-0.4rem"
>
Informações do proponente
</h5></div>
<div
class=
"col-md-12"
style=
"margin-bottom: -0.8rem;"
><hr
style=
"border-top: 1px solid#1492E6"
></div>
<div
class=
"form-group col-md-12"
style=
"margin-top: 15px"
>
<label
for=
"nomeCompletoProponente1"
>
Proponente
</label>
<div
class=
"col-md-12"
><h5
style=
"color: #234B8B; font-weight: bold"
>
Informações do Proponente
</h5></div>
</div>
<hr
style=
"border-top: 1px solid#1492E6"
>
<div
class=
"form-row mt-3"
>
<div
class=
"col-md-1"
>
<label
for=
"nome"
class=
"col-form-label font-tam"
style=
"font-weight: bold"
>
{{ __('Nome: ') }}
</label>
</div>
<div
class=
"col-md-11"
>
<input
class=
"form-control"
type=
"text"
id=
"nomeCompletoProponente1"
name=
"nomeCoordenador"
disabled=
"disabled"
value=
"{{ Auth()->user()->name }}"
>
</div>
<div
class=
"form-group col-md-6"
>
<label
for=
"linkLattesEstudante"
>
Link do currículo Lattes
<span
style=
"color: red; font-weight:bold"
>
*
</span></label>
<input
class=
"form-control @error('linkLattesEstudante') is-invalid @enderror"
type=
"text"
name=
"linkLattesEstudante"
@
if
(
Auth
()
-
>
user()->proponentes != null
&&
Auth()->user()->proponentes->linkLattes != null)
value="{{ Auth()->user()->proponentes->linkLattes }}"
@else
value=""
@endif >
<small>
Ex.: http://lattes.cnpq.br/8363536830656923
</small>
<div
class=
"col-md-1"
>
<br>
<label
for=
"lattes"
class=
"col-form-label font-tam"
style=
"font-weight: bold"
>
{{ __('Lattes: ') }}
</label>
</div>
<div
class=
"col-md-11"
>
<br>
<input
class=
"form-control @error('linkLattesEstudante') is-invalid @enderror"
type=
"text"
name=
"linkLattesEstudante"
@
if
(
Auth
()
-
>
user()->proponentes != null
&&
Auth()->user()->proponentes->linkLattes != null)
value="{{ Auth()->user()->proponentes->linkLattes }}"
@else
value=""
@endif >
@error('linkLattesEstudante')
<span
class=
"invalid-feedback"
role=
"alert"
style=
"overflow: visible; display:block"
>
<strong>
{{ $message }}
</strong>
</span>
@enderror
</div>
<div
class=
"form-group col-md-6"
>
<label
for=
"linkGrupoPesquisa"
>
Link do grupo de pesquisa
</label>
<input
class=
"form-control @error('linkGrupoPesquisa') is-invalid @enderror"
type=
"url"
name=
"linkGrupoPesquisa"
value=
"{{ $projeto->linkGrupoPesquisa }}"
>
<small>
Ex.: http://dgp.cnpq.br/dgp/espelhogrupo/228363
</small>
@error('linkGrupoPesquisa')
<span
class=
"invalid-feedback"
role=
"alert"
style=
"overflow: visible; display:block"
>
@if($edital->tipo != "PIBEX")
<div
class=
"col-md-2"
>
<br>
<label
for=
"lattes"
class=
"col-form-label font-tam"
style=
"font-weight: bold"
>
{{ __('Grupo de Pesquisa: ') }}
</label>
</div>
<div
class=
"col-md-10"
>
<br>
<input
class=
"form-control @error('linkGrupoPesquisa') is-invalid @enderror"
type=
"url"
name=
"linkGrupoPesquisa"
value=
"{{ $projeto->linkGrupoPesquisa }}"
>
@error('linkGrupoPesquisa')
<span
class=
"invalid-feedback"
role=
"alert"
style=
"overflow: visible; display:block"
>
<strong>
{{ $message }}
</strong>
</span>
@enderror
</div>
<div
class=
"form-group col-md-6"
>
<label
for=
"pontuacaoPlanilha"
>
Valor da planilha de pontuação
<span
style=
"color: red; font-weight:bold"
>
*
</span></label>
<input
class=
"form-control @error('pontuacaoPlanilha') is-invalid @enderror"
type=
"number"
min=
"0"
step=
".01"
name=
"pontuacaoPlanilha"
value=
"{{ $projeto->pontuacaoPlanilha }}"
>
@enderror
</div>
@endif
@error('pontuacaoPlanilha')
<span
class=
"invalid-feedback"
role=
"alert"
style=
"overflow: visible; display:block"
>
@if($edital->tipo != "PIBEX")
<div
class=
"col-md-3"
>
<br>
<label
for=
"lattes"
class=
"col-form-label font-tam"
style=
"font-weight: bold"
>
{{ __('Valor da Planilha de Pontuação: ') }}
</label>
</div>
<div
class=
"col-md-9"
>
<br>
<input
class=
"form-control @error('pontuacaoPlanilha') is-invalid @enderror"
type=
"number"
min=
"0"
step=
".01"
name=
"pontuacaoPlanilha"
value=
"{{ $projeto->pontuacaoPlanilha }}"
>
@error('pontuacaoPlanilha')
<span
class=
"invalid-feedback"
role=
"alert"
style=
"overflow: visible; display:block"
>
<strong>
{{ $message }}
</strong>
</span>
@enderror
</div>
@enderror
</div>
@endif
@if($edital->cotaDoutor != false)
<div
class=
"col-md-1"
>
<br>
<label
for=
"modalidade"
class=
"col-form-label font-tam"
style=
"font-weight: bold"
>
{{ __('Modalidade: ') }}
</label>
</div>
<div
class=
"col-md-11"
>
<br>
<select
id=
"modalidade"
type=
"text"
class=
"form-control @error('modalidade') is-invalid @enderror"
name=
"modalidade"
@
if
(
old
('
modalidade
'))
value=
"{{ old('modalidade') }}"
@
endif
required
style=
"width: 250px"
>
<option
value=
""
disabled
selected
hidden
>
-- Modalidade --
</option>
@if(old('modalidade') !=null)
<option
@
if
(
old
('
modalidade
'
)=
='AmplaConcorrencia'
)
selected
@
endif
value=
"AmplaConcorrencia"
>
Ampla Concorrência
</option>
<option
@
if
(
old
('
modalidade
'
)=
='RecemDoutor'
)
selected
@
endif
value=
"RecemDoutor"
>
Recém Doutor
</option>
@else
<option
@
if
($
projeto-
>
modalidade =='AmplaConcorrencia' ) selected @endif value="AmplaConcorrencia">Ampla Concorrência
</option>
<option
@
if
($
projeto-
>
modalidade=='RecemDoutor' ) selected @endif value="RecemDoutor">Recém Doutor
</option>
@endif
</select>
</div>
@endif
</div>
</div>
</div>
</div>
</div>
</div>
...
...
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