first commit

This commit is contained in:
2026-01-02 09:19:43 -03:00
parent 63cf724aaf
commit cc44b7ef4f
187 changed files with 2484 additions and 686 deletions

View File

@@ -0,0 +1,23 @@
<div class="container-fluid mt-2 bg-dark text-light p-2" style="font-size: 0.85rem;">
<h6 class="text-secondary text-uppercase border-bottom border-secondary pb-1 mb-2">
<i class="bi bi-bank me-1"></i>Pagamentos
</h6>
<div class="border border-secondary rounded overflow-hidden">
{% for name, value in Sum_payment_method_service.bank_balance.items %}
{% if value != 0 %}
<div class="d-flex justify-content-between align-items-center p-1 px-2 border-bottom border-secondary border-opacity-25 bg-opacity-5">
<span class="">{{ name }}</span>
<span class="fw-bold">R$ {{ value|floatformat:2 }}</span>
</div>
{% endif %}
{% empty %}
<div class="p-2 text-center text-muted italic">Vazio</div>
{% endfor %}
<div class="d-flex justify-content-between align-items-center p-1 px-2 bg-black bg-opacity-50">
<span class="text-uppercase" style="font-size: 0.7rem;">Total Banco</span>
<span class="text-info fw-bold">R$ {{ Sum_payment_method_service.sum_of_bank|floatformat:2 }}</span>
</div>
</div>
</div>