Skip to content

Commit

Permalink
Utiliza CSS para layout
Browse files Browse the repository at this point in the history
  • Loading branch information
edersoares committed Jul 3, 2024
1 parent 237a861 commit 268c367
Show file tree
Hide file tree
Showing 2 changed files with 21 additions and 17 deletions.
4 changes: 4 additions & 0 deletions public/css/base.css
Original file line number Diff line number Diff line change
Expand Up @@ -405,3 +405,7 @@ a:hover {
.ml-5 {
margin-left: 5px;
}

.text-center {
text-align: center;
}
34 changes: 17 additions & 17 deletions resources/views/enrollments/enrollmentHistory.blade.php
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@

@section('content')
<div>
<table class="table-default" role="presentation">
<table class="table-default">
<thead>
<tr>
<td colspan="2"><strong>Filtros de busca</strong></td>
Expand Down Expand Up @@ -46,20 +46,20 @@
<td class="titulo-tabela-listagem" colspan="14">Lista de enturmações da matrícula</td>
</tr>
<tr>
<th scope="col" class="formdktd" valign="top" align="left" style="font-weight:bold;">Sequencial</th>
<th scope="col" class="formdktd" valign="top" align="left" style="font-weight:bold;">Turma</th>
<th scope="col" class="formdktd" valign="top" align="left" style="font-weight:bold;">Turno do aluno</th>
<th scope="col" class="formdktd" valign="top" align="left" style="font-weight:bold;">Ativo</th>
<th scope="col" class="formdktd" valign="top" align="left" style="font-weight:bold;">Data de enturmação</th>
<th scope="col" class="formdktd" valign="top" align="left" style="font-weight:bold;">Data de saída</th>
<th scope="col" class="formdktd" valign="top" align="left" style="font-weight:bold;">Transferido</th>
<th scope="col" class="formdktd" valign="top" align="left" style="font-weight:bold;">Remanejado</th>
<th scope="col" class="formdktd" valign="top" align="left" style="font-weight:bold;">Reclassificado</th>
<th scope="col" class="formdktd" valign="top" align="left" style="font-weight:bold;">Abandono</th>
<th scope="col" class="formdktd" valign="top" align="left" style="font-weight:bold;">Falecido</th>
<th scope="col" class="formdktd" valign="top" align="left" style="font-weight:bold;">Usuário criou</th>
<th scope="col" class="formdktd" valign="top" align="left" style="font-weight:bold;">Usuário editou</th>
<th scope="col" class="formdktd" valign="top" align="left" style="font-weight:bold;">
<th scope="col" class="formdktd" style="font-weight:bold;">Sequencial</th>
<th scope="col" class="formdktd" style="font-weight:bold;">Turma</th>
<th scope="col" class="formdktd" style="font-weight:bold;">Turno do aluno</th>
<th scope="col" class="formdktd" style="font-weight:bold;">Ativo</th>
<th scope="col" class="formdktd" style="font-weight:bold;">Data de enturmação</th>
<th scope="col" class="formdktd" style="font-weight:bold;">Data de saída</th>
<th scope="col" class="formdktd" style="font-weight:bold;">Transferido</th>
<th scope="col" class="formdktd" style="font-weight:bold;">Remanejado</th>
<th scope="col" class="formdktd" style="font-weight:bold;">Reclassificado</th>
<th scope="col" class="formdktd" style="font-weight:bold;">Abandono</th>
<th scope="col" class="formdktd" style="font-weight:bold;">Falecido</th>
<th scope="col" class="formdktd" style="font-weight:bold;">Usuário criou</th>
<th scope="col" class="formdktd" style="font-weight:bold;">Usuário editou</th>
<th scope="col" class="formdktd" style="font-weight:bold;">
Editar
</th>
</tr>
Expand Down Expand Up @@ -110,12 +110,12 @@
</tr>
@endforeach
<tr>
<td class="formdktd" valign="top" align="left" colspan="14">
<td class="formdktd" colspan="14">
<small>A coluna "Turno do aluno" permanecerá em branco quando o turno do aluno for o mesmo da turma.</small>
</td>
</tr>
<tr>
<td colspan="14" align="center">
<td colspan="14" class="text-center">
<input type="button" class="btn-green botaolistagem" onclick="javascript: go('/intranet/educar_matricula_det.php?cod_matricula={{ $registration->id }}')" value=" Voltar ">
</td>
</tr>
Expand Down

0 comments on commit 268c367

Please sign in to comment.