Commit 14bed14f authored by Gabriel-31415's avatar Gabriel-31415
Browse files

botao de volta em proponente e ajuste de rota em cancelar submissão

parent 1e367357
...@@ -427,7 +427,7 @@ ...@@ -427,7 +427,7 @@
@if (Auth()->user()->administradors != null) @if (Auth()->user()->administradors != null)
<a href="{{ route('admin.editais') }}" class="btn btn-secondary" style="width:100%">Cancelar</a> <a href="{{ route('admin.editais') }}" class="btn btn-secondary" style="width:100%">Cancelar</a>
@else @else
<a href="{{ route('projetos.edital', ['id' => $edital->id]) }}" class="btn btn-secondary" style="width:100%">Cancelar</a> <a href="{{ route('proponente.projetosEdital', ['id' => $edital->id]) }}" class="btn btn-secondary" style="width:100%">Cancelar</a>
@endif @endif
</form> </form>
</div> </div>
......
...@@ -19,18 +19,16 @@ ...@@ -19,18 +19,16 @@
</div> </div>
</div> </div>
@endif @endif
<div class="container" > <div class="row" >
<div class="row" > <div class="col-sm-9">
<div class="col-sm-9"> <h3>Projetos do edital {{ $edital->nome }}</h3>
<h3>Projetos do edital {{ $edital->nome }}</h3> <h6 style="color: rgb(4, 78, 4);">Submissão irá até o dia {{ date('d-m-Y', strtotime($edital->fimSubmissao)) }}</h6>
<h6 style="color: rgb(4, 78, 4);">Submissão irá até o dia {{ date('d-m-Y', strtotime($edital->fimSubmissao)) }}</h6> </div>
</div> <div class="col mr-0">
<div class="col"> <a href="{{route('proponente.editais')}}" class="btn btn-primary float-right">Voltar</a>
<a href="{{ route('home') }}" class="btn btn-primary">Voltar</a> </div>
</div> <div class="col">
<div class="col"> <a href="{{ route('trabalho.index', ['id' => $edital->id] )}}" class="btn btn-primary" style="position:relative; float: right;">Criar projeto</a>
<a href="{{ route('trabalho.index', ['id' => $edital->id] )}}" class="btn btn-primary" style="position:relative; float: right;">Criar projeto</a>
</div>
</div> </div>
</div> </div>
<hr> <hr>
......
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