{% for grupo in sumario_corretoras %}
| 🏦 {{ grupo.nome }} |
{% for linha in grupo.linhas %}
| {{ linha.nome }} |
{{ linha.corretora }} |
{{ linha.categoria }} |
{{ linha.dias }} |
{{ "%.2f"|format(linha.vi_unit) }} |
{{ "%.2f"|format(linha.vi_tot) }} |
{{ "%.2f"|format(linha.pl_val) }}
|
{{ "%.1f"|format(linha.pl_perc) }}%
|
{% endfor %}
| ∑ {{ grupo.nome }} |
— | — |
{{ "%.2f"|format(grupo.tot_in) }} |
{{ "%.2f"|format(grupo.tot_pl) }} |
{{ "%.1f"|format(grupo.tot_perc) }}% |
{% endfor %}
| 📂 Subtotais por Categoria |
{% for cat in sumario_categorias %}
| 📁 {{ cat.nome }} |
— | — |
{{ "%.2f"|format(cat.tot_in) }} |
{{ "%.2f"|format(cat.tot_pl) }} |
{{ "%.1f"|format(cat.tot_perc) }}% |
{% endfor %}
| TOTAL GERAL |
— | — |
{{ "%.2f"|format(totais_geral.total_in) }} |
{{ "%.2f"|format(totais_geral.total_pl) }} |
{{ "%.1f"|format(totais_geral.tot_perc) }}% |