Files
CenterPes/Base/templates/Dashboards/DashboardProf/Resumo do Mês.html
2026-01-02 09:19:43 -03:00

38 lines
1.4 KiB
HTML

<div class="col-4">
<div class="card shadow-sm mb-4">
<div class="card-header ">
<h3 class="card-title h5 mb-0">Serviços Realizados</h3>
</div>
<div class="card-body p-0">
<div class="table-responsive">
<table class="table table-hover table-striped mb-0">
<thead class="table">
<tr>
<th scope="col" class="ps-4">Serviço</th>
<th scope="col" class="text-center">Quantidade</th>
</tr>
</thead>
<tbody>
{% for item in Total_serv.services %}
<tr>
<td class="ps-4">{{ item.service__name }}</td>
<td class="text-center">
<span class="badge bg-secondary rounded-pill">
{{ item.total_performed }}
</span>
</td>
</tr>
{% empty %}
<tr>
<td colspan="2" class="text-center py-4 text-muted">
<i class="bi bi-info-circle me-2"></i>
Nenhum serviço realizado neste mês.
</td>
</tr>
{% endfor %}
</tbody>
</table>
</div>
</div>
</div>
</div>