Commit 4b0f1d1a authored by Guilherme Silva's avatar Guilherme Silva
Browse files

Adicionado acesso do proponente para o envio dos relatórios

parent bd982f8e
...@@ -72,7 +72,7 @@ ...@@ -72,7 +72,7 @@
<div class="card-body" > <div class="card-body" >
@if(count($projetos)>0) @if(count($projetos)>0)
<table class="table table-bordered table-hover" style="display: block; overflow-x: auto; white-space: nowrap; border-radius:10px; margin-bottom:0px"> <table class="table table-bordered table-hover" style="display: block; overflow-x: visible; white-space: nowrap; border-radius:10px; margin-bottom:0px">
<thead> <thead>
<tr> <tr>
<th scope="col" style="width:100%">Nome do projeto</th> <th scope="col" style="width:100%">Nome do projeto</th>
...@@ -111,10 +111,19 @@ ...@@ -111,10 +111,19 @@
<a href="{{route('trabalho.trocaParticipante', ['evento_id' => $projeto->evento->id, 'projeto_id' => $projeto->id])}}" class="dropdown-item" style="text-align: center;"> <a href="{{route('trabalho.trocaParticipante', ['evento_id' => $projeto->evento->id, 'projeto_id' => $projeto->id])}}" class="dropdown-item" style="text-align: center;">
Substituir participante Substituir participante
</a> </a>
<hr class="dropdown-hr">
@endif @endif
<a href="{{ route('trabalho.show', ['id' => $projeto->id]) }}" class="dropdown-item" style="text-align: center"> <a href="{{ route('trabalho.show', ['id' => $projeto->id]) }}" class="dropdown-item" style="text-align: center">
Visualizar Visualizar
</a> </a>
@if(($edital->dt_inicioRelatorio != null && $edital->dt_fimRelatorio !=null) &&
($edital->dt_inicioRelatorio <= $hoje && $hoje <= $edital->dt_fimRelatorio))
<hr class="dropdown-hr">
<a href="{{route('planos.listar', ['id' => $projeto->id])}}" class="dropdown-item" style="text-align: center">
Relatórios
</a>
@endif
<hr class="dropdown-hr"> <hr class="dropdown-hr">
{{-- <a href="" class="dropdown-item" style="text-align: center"> {{-- <a href="" class="dropdown-item" style="text-align: center">
Recorrer Recorrer
......
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