Commit e1614e1d authored by Carlos André's avatar Carlos André
Browse files

nome das colunas das tabelas

parent b3f3a335
...@@ -97,7 +97,7 @@ ...@@ -97,7 +97,7 @@
<thead> <thead>
<tr> <tr>
<th scope="col">Nome</th> <th scope="col">Nome</th>
<th scope="col">Data de criação</th> <th scope="col">Data de Criação</th>
<th scope="col">Opção</th> <th scope="col">Opção</th>
</tr> </tr>
</thead> </thead>
...@@ -203,7 +203,7 @@ ...@@ -203,7 +203,7 @@
<thead> <thead>
<tr> <tr>
<th scope="col">Nome</th> <th scope="col">Nome</th>
<th scope="col">Data de criação</th> <th scope="col">Data de Criação</th>
<th scope="col">Opção</th> <th scope="col">Opção</th>
</tr> </tr>
</thead> </thead>
......
...@@ -39,7 +39,7 @@ ...@@ -39,7 +39,7 @@
<table class="table table-bordered"> <table class="table table-bordered">
<thead> <thead>
<tr> <tr>
<th scope="col">Nome do projeto</th> <th scope="col">Projeto</th>
<th scope="col">Status</th> <th scope="col">Status</th>
<th scope="col">Data de Criação</th> <th scope="col">Data de Criação</th>
<th scope="col">Opção</th> <th scope="col">Opção</th>
...@@ -57,7 +57,7 @@ ...@@ -57,7 +57,7 @@
@elseif($projeto->status == 'Submetido') @elseif($projeto->status == 'Submetido')
<td style="color: rgb(0, 0, 0)">Submetido</td> <td style="color: rgb(0, 0, 0)">Submetido</td>
@endif @endif
<td>{{ date('d-m-Y', strtotime($projeto->updated_at)) }}</td> <td>{{ date('d/m/Y', strtotime($projeto->updated_at)) }}</td>
<td> <td>
<div class="btn-group dropright dropdown-options"> <div class="btn-group dropright dropdown-options">
<a id="options" class="dropdown-toggle " data-toggle="dropdown" aria-haspopup="true" aria-expanded="false"> <a id="options" class="dropdown-toggle " data-toggle="dropdown" aria-haspopup="true" aria-expanded="false">
......
...@@ -16,11 +16,11 @@ ...@@ -16,11 +16,11 @@
<table class="table table-bordered"> <table class="table table-bordered">
<thead> <thead>
<tr> <tr>
<th scope="col">Nome do Edital</th> <th scope="col">Edital</th>
<th scope="col">Inicio da Submissão</th> <th scope="col" style="text-align: center;">Inicio da Submissão</th>
<th scope="col">Fim da Submissão</th> <th scope="col" style="text-align: center;">Fim da Submissão</th>
<th scope="col">Data do Resultado</th> <th scope="col" style="text-align: center;">Data do Resultado</th>
<th scope="col">Baixar edital</th> <th scope="col" style="text-align: center;">Baixar Edital</th>
<th scope="col">Opção</th> <th scope="col">Opção</th>
</tr> </tr>
</thead> </thead>
...@@ -32,9 +32,9 @@ ...@@ -32,9 +32,9 @@
{{ $evento->nome }} {{ $evento->nome }}
</a> </a>
</td> </td>
<td>{{ date('d/m/Y', strtotime($evento->inicioSubmissao)) }}</td> <td style="text-align: center;">{{ date('d/m/Y', strtotime($evento->inicioSubmissao)) }}</td>
<td>{{ date('d/m/Y', strtotime($evento->fimSubmissao)) }}</td> <td style="text-align: center;">{{ date('d/m/Y', strtotime($evento->fimSubmissao)) }}</td>
<td>{{ date('d/m/Y', strtotime($evento->created_at)) }}</td> <td style="text-align: center;">{{ date('d/m/Y', strtotime($evento->created_at)) }}</td>
<td style="text-align: center"> <td style="text-align: center">
<a href="{{ route('baixar.edital', ['id' => $evento->id]) }}"> <a href="{{ route('baixar.edital', ['id' => $evento->id]) }}">
<img src="{{asset('img/icons/file-download-solid.svg')}}" width="15px"> <img src="{{asset('img/icons/file-download-solid.svg')}}" width="15px">
......
...@@ -22,7 +22,7 @@ ...@@ -22,7 +22,7 @@
<table class="table table-bordered"> <table class="table table-bordered">
<thead> <thead>
<tr> <tr>
<th scope="col">Nome do projeto</th> <th scope="col">Projeto</th>
<th scope="col">Status</th> <th scope="col">Status</th>
<th scope="col">Data de Criação</th> <th scope="col">Data de Criação</th>
<th scope="col">Opção</th> <th scope="col">Opção</th>
...@@ -42,7 +42,7 @@ ...@@ -42,7 +42,7 @@
@elseif($projeto->status == 'Rascunho') @elseif($projeto->status == 'Rascunho')
<td style="color: rgb(0, 0, 0)">Rascunho</td> <td style="color: rgb(0, 0, 0)">Rascunho</td>
@endif @endif
<td>{{ date('d-m-Y', strtotime($projeto->updated_at)) }}</td> <td>{{ date('d/m/Y', strtotime($projeto->updated_at)) }}</td>
<td> <td>
<div class="btn-group dropright dropdown-options"> <div class="btn-group dropright dropdown-options">
<a id="options" class="dropdown-toggle " data-toggle="dropdown" aria-haspopup="true" aria-expanded="false"> <a id="options" class="dropdown-toggle " data-toggle="dropdown" aria-haspopup="true" aria-expanded="false">
......
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