{% extends 'base_relatorio.html.twig' %}
{% block title %}DEPARTAMENTO PESSOAL
{% endblock %}
{% block body %}
<!-- Main content -->
<section class="content">
<div class="card">
<div class="card-header">
<div class="container-fluid text-center ">
<h1>ACESSO A INFORMAÇÃO</h1>
<p>Em Atendimento a Lei Nº 12.527, de 18 de Novembro de 2011</p>
<h2>DEPARTAMENTO PESSOAL</h2>
</div>
<!-- /.container-fluid -->
</div>
<div class="card-body">
<table class="table table-bordered table-hover table-sm">
<thead>
<tr>
<th>NOME</th>
<th>MATRICULA</th>
<th>CARGO</th>
<th>VÍNCULO</th>
<th>C. HORÁRIA</th>
<th>LOTAÇÃO</th>
<th>STATUS</th>
<th>Tipo</th>
<th>Data</th>
</tr>
</thead>
<tbody>
{% for item in lista %}
<tr>
<td>{{ item.nome }}</td>
<td>{{ item.matricula }}</td>
<td>{{ item.cargo }}</td>
<td>{{ item.vinculo }}</td>
<td>{{ item.cargaHoraria }}</td>
<td>{{ item.lotacao }}</td>
<td>{{ item.viewAtivo }}</td>
<td>{{ item.viewTipo }}</td>
<td>{{ item.data ? item.data|date('d/m/Y') : '' }}</td>
</tr>
{% else %}
<tr aria-hidden="true">
<td colspan="12">NENHUM REGISTRO ENCONTRADO</td>
</tr>
{% endfor %}
</tbody>
</table>
</div>
</div>
</section>
{% endblock %}