|
|
|
@ -50,7 +50,7 @@ |
|
|
|
<tbody> |
|
|
|
{% if object.boletos.all.count > 0 %} |
|
|
|
{% for boleto in object.boletos.all %} |
|
|
|
<tr {%if boleto.atrasado %}class="bg-danger"{% endif %}> |
|
|
|
<tr {%if boleto.atrasado and boleto.situacao == 'A' %}class="bg-danger"{% endif %}> |
|
|
|
<td>{{ boleto.numero_boleto }}</td> |
|
|
|
<td class="text-center">{{ boleto.data_vencimento|date:"d/m/Y" }}</td> |
|
|
|
<td class="text-center">{{ boleto.data_geracao|date:"d/m/Y" }}</td> |
|
|
|
|