Commit aa8be814 authored by Danillo Bion's avatar Danillo Bion
Browse files

modificacoes na tela - meus editais - avaliador

parent 6dfb1d91
...@@ -2,22 +2,52 @@ ...@@ -2,22 +2,52 @@
@section('content') @section('content')
<div class="container" style="margin-top: 100px;"> <div class="container">
@if(isset($mensagem))
<div class="container" > <div class="col-sm-12">
<div class="row" > <br>
<div class="alert alert-success">
<p>{{ $mensagem }}</p>
</div>
</div>
@endif
@if(session('mensagem'))
<div class="col-sm-12"> <div class="col-sm-12">
<h3>Meus Editais</h3> <br>
<div class="alert alert-success">
<p>{{session('mensagem')}}</p>
</div>
</div>
@endif
<div class="row justify-content-center" style="margin-top: 3rem;">
<div class="col-md-11" style="margin-bottom: -3rem">
<div class="card card_conteudo shadow bg-white" style="border-radius:12px; border-width:0px;">
<div class="card-header" style="border-top-left-radius: 12px; border-top-right-radius: 12px; background-color: #fff">
<div class="d-flex justify-content-between align-items-center" style="margin-top: 9px; margin-bottom:-1rem">
<div class="bottomVoltar" style="margin-top: -20px">
<a href="{{ route('home') }}" class="btn btn-secondary" style=""><img src="{{asset('img/icons/logo_esquerda.png')}}" alt="" width="15px"></a>
</div>
<div class="form-group">
<h5 class="card-title mb-0" style="font-size:25px; font-family:Arial, Helvetica, sans-serif; color:#1492E6">Meus editais</h5>
</div>
<div style="margin-top: -2rem">
<div class="form-group">
<div style="margin-top:30px;">
{{-- Pesquisar--}}
</div> </div>
</div> </div>
</div> </div>
<hr> </div>
<table class="table table-bordered"> </div>
<div class="card-body" >
<table class="table table-bordered table-hover" style="display: block; overflow-x: auto; white-space: nowrap; border-radius:10px; margin-bottom:0px">
<thead> <thead>
<tr> <tr>
<th scope="col">Nome do Edital</th> <th scope="col" style="width:100%">Nome do Edital</th>
<th scope="col">Data de Inicio da Revisão</th> <th scope="col">Data de Inicio da Revisão</th>
<th scope="col">Data de Fim da Revisão</th> <th scope="col" style="text-align: center">Data de Fim da Revisão</th>
<th scope="col">Opção</th> <th scope="col">Opção</th>
</tr> </tr>
</thead> </thead>
...@@ -28,11 +58,11 @@ ...@@ -28,11 +58,11 @@
<td> <td>
{{ $evento->nome }} {{ $evento->nome }}
</td> </td>
<td>{{ date('d/m/Y', strtotime($evento->inicioRevisao)) }}</td> <td style="text-align:center">{{ date('d/m/Y', strtotime($evento->inicioRevisao)) }}</td>
<td>{{ date('d/m/Y', strtotime($evento->fimRevisao)) }}</td> <td style="text-align:center">{{ date('d/m/Y', strtotime($evento->fimRevisao)) }}</td>
<td> <td>
<div class="btn-group dropright dropdown-options"> <div class="btn-group dropright dropdown-options" style="width: 100%; text-align:center; float:none">
<a id="options" class="dropdown-toggle " data-toggle="dropdown" aria-haspopup="true" aria-expanded="false"> <a id="options" class="dropdown-toggle btn btn-light" data-toggle="dropdown" aria-haspopup="true" aria-expanded="false">
<img src="{{asset('img/icons/ellipsis-v-solid.svg')}}" style="width:8px"> <img src="{{asset('img/icons/ellipsis-v-solid.svg')}}" style="width:8px">
</a> </a>
<div class="dropdown-menu"> <div class="dropdown-menu">
...@@ -67,8 +97,13 @@ ...@@ -67,8 +97,13 @@
@endforeach @endforeach
</tbody> </tbody>
</table> </table>
</div>
</div>
</div>
</div>
</div> </div>
@endsection @endsection
@section('javascript') @section('javascript')
......
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