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
3c4c57a6
Commit
3c4c57a6
authored
Jul 28, 2022
by
S-Nathalia
Browse files
mudança na visualização do discente para editar e criar proposta
parent
ab7f5663
Changes
4
Show whitespace changes
Inline
Side-by-side
resources/views/evento/formulario/participantes.blade.php
View file @
3c4c57a6
...
...
@@ -5,7 +5,7 @@
<div
class=
"card-body"
style=
"padding-top: 0.2rem;"
>
<div
class=
"container"
>
<div
class=
"form-row mt-3"
>
<div
class=
"col-md-11"
><h5
style=
"color: #234B8B; font-weight: bold"
>
Dados do(s) Discente(s)
</h5></div>
<div
class=
"col-md-11"
><h5
style=
"color: #234B8B; font-weight: bold"
>
Dados do(s) Discente(s)
aqui
</h5></div>
<div
class=
"col-md-1 text-sm-right"
>
<a
type=
"button"
value=
"{{ $edital->id }}"
id=
"atribuir1"
data-toggle=
"modal"
data-target=
"#exampleModal0"
>
<img
class=
""
src=
"{{asset('img/icons/add.ico')}}"
style=
"width:30px"
alt=
""
>
...
...
@@ -26,12 +26,14 @@
</div>
<div
class=
"col-sm-10"
style=
"display: flex; align-items: center;"
>
<div
class=
"col-sm-12"
>
<a
href=
""
style=
""
class=
"justify-content-center"
data-toggle=
"modal"
data-target=
"#exampleModal{{$i}}"
id=
"nomePart{{$i+1}}"
>
@if(isset(old('marcado')[$i]))
@if(isset(old('name')[$i]))Nome: {{old('name')[$i]}} @else Discente {{$i+1}} @endif
@if(isset(old('nomePlanoTrabalho')[$i]))
<br>
Plano: {{old('nomePlanoTrabalho')[$i]}} @endif
@endif
</a>
<h6>
<a
id=
"nomePlano{{$i+1}}"
></a><br>
<a
href=
""
style=
""
class=
"justify-content-center"
data-toggle=
"modal"
data-target=
"#exampleModal{{$i}}"
id=
"nomePart{{$i+1}}"
>
Informações
</a>
</h6>
<div
class=
"col-sm-5 pl-0"
style=
"margin-top: 10px; text-align: left;"
>
<button
data-dismiss=
"modal"
type=
"button"
id=
"cancelar{{$i}}"
class=
" btn btn-danger"
style=
"font-size: 12px"
onclick=
"desmarcar({{$i}})"
@
if
(
isset
(
old
('
marcado
')[$
i
+1]))
disabled
@
endif
>
Excluir
</button>
</div>
...
...
resources/views/evento/submeterTrabalho.blade.php
View file @
3c4c57a6
...
...
@@ -190,16 +190,18 @@
function
marcar
(
id
){
let
nome
=
document
.
getElementById
(
"nome"
+
id
);
let
linkNome
=
document
.
getElementById
(
"nomePart"
+
(
id
+
1
));
let
nomePlano
=
document
.
getElementById
(
"nomePlano"
+
(
id
+
1
));
let
linkTituloProj
=
document
.
getElementById
(
"tituloProj"
+
(
id
+
1
));
let
planoTrabalho
=
document
.
getElementById
(
"nomePlanoTrabalho"
+
id
);
if
(
nome
.
value
!=
""
){
if
(
planoTrabalho
.
value
!=
""
){
linkNome
.
innerText
=
`Nome: ${nome.value} \n Plano: ${planoTrabalho.value}`
;
nomePlano
.
innerText
=
`Nome: ${nome.value} \n Plano: ${planoTrabalho.value}`
;
}
else
{
linkNome
.
innerText
=
`Nome: ${nome.value}`
;
nomePlano
.
innerText
=
`Nome: ${nome.value}`
;
}
}
else
{
linkNome
.
innerText
=
`Discente `
+
(
id
+
1
);
nomePlano
.
innerText
=
`Discente `
+
(
id
+
1
);
}
if
(
id
>=
1
){
document
.
getElementById
(
"cancelar"
+
(
id
-
1
))
.
setAttribute
(
"disabled"
,
true
);
...
...
resources/views/projeto/editaFormulario/participantes.blade.php
View file @
3c4c57a6
...
...
@@ -32,14 +32,15 @@
</div>
<div
class=
"col-sm-8"
style=
"display: flex; align-items: center;"
>
<div
class=
"col-sm-12"
>
<a
href=
""
style=
""
class=
"justify-content-center"
data-toggle=
"modal"
data-target=
"#exampleModal{{$i}}"
id=
"nomePart{{$i+1}}"
>
@if($participante)
@if(isset(old('name')[$i]))Nome: {{old('name')[$i]}} @else Nome: {{$participante->user->name}} @endif
@if(isset(old('nomePlanoTrabalho')[$i]))
<br>
Plano: {{old('nomePlanoTrabalho')[$i]}} @else
<br>
Plano: {{$participante->planoTrabalho->titulo ?? 'Não informado'}} @endif
@else
Discente
@endif
</a>
<h6>
<a
href=
""
style=
""
class=
"justify-content-center"
data-toggle=
"modal"
data-target=
"#exampleModal{{$i}}"
id=
"nomePart{{$i+1}}"
>
Informações
</a>
</h6>
<div
class=
"col-sm-5 pl-0"
style=
"margin-top: 10px; text-align: left;"
>
<button
data-dismiss=
"modal"
type=
"button"
id=
"cancelar{{$i}}"
class=
" btn btn-danger"
style=
"font-size: 12px"
onclick=
"desmarcar({{$i}})"
@
if
(
isset
(
old
('
marcado
')[$
i
+1]))
disabled
@
endif
>
Excluir
</button>
</div>
...
...
resources/views/projeto/formularioVisualizar/participantes2.blade.php
View file @
3c4c57a6
...
...
@@ -4,7 +4,7 @@
<div
class=
"card-body"
style=
"padding-top: 0.2rem;"
>
<div
class=
"container"
>
<div
class=
"form-row mt-3"
>
<div
class=
"col-sm-8"
><h5
style=
"color: #234B8B; font-weight: bold"
>
Discentes
</h5></div>
<div
class=
"col-sm-8"
><h5
style=
"color: #234B8B; font-weight: bold"
>
Discentes
11
</h5></div>
{{--
<div
class=
"col-sm-4 text-sm-right"
>
<a
href=
""
data-toggle=
"modal"
data-target=
"#modalSelecionarDiscentes"
class=
"button"
>
Solicitar certificado/declaração
</a>
</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