Commit 7ca5e2dd authored by unknown's avatar unknown
Browse files

Remover a opção Recomendado parcialmente

parent 7745900e
...@@ -18,7 +18,7 @@ ...@@ -18,7 +18,7 @@
<option value="reprovado">Não Recomendados</option> <option value="reprovado">Não Recomendados</option>
<option value="submetido">Submetidos</option> <option value="submetido">Submetidos</option>
<option value="avaliado">Avaliados</option> <option value="avaliado">Avaliados</option>
<option value="corrigido">Parcialmente Recomendados</option>
@foreach($grandesAreas as $grandeArea) @foreach($grandesAreas as $grandeArea)
...@@ -47,8 +47,8 @@ ...@@ -47,8 +47,8 @@
<input type="text" class="form-control form-control-edit" placeholder="Título do projeto ou nome do Proponente" onkeyup="buscar(this)"> <img src="{{asset('img/icons/logo_lupa.png')}}" alt=""> <input type="text" class="form-control form-control-edit" placeholder="Título do projeto ou nome do Proponente" onkeyup="buscar(this)"> <img src="{{asset('img/icons/logo_lupa.png')}}" alt="">
</div> </div>
<div class="col-sm-5" style="top: 40px; text-align: end;"> <div class="col-sm-5" style="display:flex; align-items: center;">
<h6 style="color: #234B8B; font-weight: bold;font-size: 13px; text-align: right;padding-bottom: 35px"> <h6 style="color: #234B8B; font-weight: bold; margin-left: 30px;">
<img src="{{asset('img/icons/pendente.png')}}" style="width: 22px"/> <img src="{{asset('img/icons/pendente.png')}}" style="width: 22px"/>
Proposta Pendente Proposta Pendente
<img src="{{asset('img/icons/aprovado.png')}}" style="width: 22px"/> <img src="{{asset('img/icons/aprovado.png')}}" style="width: 22px"/>
...@@ -56,8 +56,7 @@ ...@@ -56,8 +56,7 @@
<img src="{{asset('img/icons/negado.png')}}" style="width: 22px"/> <img src="{{asset('img/icons/negado.png')}}" style="width: 22px"/>
Proposta Negada Proposta Negada
<br> <br>
<img src="{{asset('img/icons/parcialmenteAprovado.png')}}" style="width: 22px"/>
Proposta Parcialmente Recomendada
</h6> </h6>
</div> </div>
</div> </div>
...@@ -82,8 +81,7 @@ ...@@ -82,8 +81,7 @@
<img src="{{asset('img/icons/aprovado.png')}}" style="width: 23%;margin: auto;display: flex;margin-top: 0px;justify-content: center;align-items: center;" alt=""> <img src="{{asset('img/icons/aprovado.png')}}" style="width: 23%;margin: auto;display: flex;margin-top: 0px;justify-content: center;align-items: center;" alt="">
@elseif($trabalho->status == "reprovado") @elseif($trabalho->status == "reprovado")
<img src="{{asset('img/icons/negado.png')}}" style="width: 23%;margin: auto;display: flex;margin-top: 0px;justify-content: center;align-items: center;" alt=""> <img src="{{asset('img/icons/negado.png')}}" style="width: 23%;margin: auto;display: flex;margin-top: 0px;justify-content: center;align-items: center;" alt="">
@elseif($trabalho->status == "corrigido")
<img src="{{asset('img/icons/parcialmenteAprovado.png')}}" style="width: 23%;margin: auto;display: flex;margin-top: 0px;justify-content: center;align-items: center;" alt="">
@else @else
<img src="{{asset('img/icons/pendente.png')}}" style="width: 20%;margin: auto;display: flex;justify-content: center;align-items: center;" alt=""> <img src="{{asset('img/icons/pendente.png')}}" style="width: 20%;margin: auto;display: flex;justify-content: center;align-items: center;" alt="">
@endif @endif
......
...@@ -4,7 +4,7 @@ ...@@ -4,7 +4,7 @@
<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-11"><h5 style="color: #234B8B; font-weight: bold">Recomendação</h5></div> <div class="col-md-11"><h5 style="color: #234B8B; font-weight: bold">Recomendação da Proposta</h5></div>
</div> </div>
<hr style="border-top: 1px solid#1492E6"> <hr style="border-top: 1px solid#1492E6">
<div class="row"> <div class="row">
...@@ -18,10 +18,7 @@ ...@@ -18,10 +18,7 @@
@if($projeto->status=="aprovado") checked @endif> @if($projeto->status=="aprovado") checked @endif>
<a style="color: #234B8B; font-weight: bold;font-size: 18px;">Recomendado</a> <a style="color: #234B8B; font-weight: bold;font-size: 18px;">Recomendado</a>
<br> <br>
<input class="col-md-1" type="radio" id="parcialAprovado" name="statusProp" value="corrigido" required disabled
@if($projeto->status=="corrigido") checked @endif>
<a style="color: #234B8B; font-weight: bold;font-size: 18px;">Parcialmente Recomendado</a>
<br>
<input class="col-md-1" type="radio" id="reprovado" name="statusProp" value="reprovado" required disabled <input class="col-md-1" type="radio" id="reprovado" name="statusProp" value="reprovado" required disabled
@if($projeto->status=="reprovado") checked @endif> @if($projeto->status=="reprovado") checked @endif>
<a style="color: #234B8B; font-weight: bold;font-size: 18px;">Não Recomendado</a> <a style="color: #234B8B; font-weight: bold;font-size: 18px;">Não Recomendado</a>
......
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment