Pontos por cliente
[% IF points_by_customer.customers.keys.size > 0 -%]
----------------------------------------
          [% i18n("PONTOS POR CLIENTE") %]
----------------------------------------
      [% i18n("CLIENTE") %]         [% i18n("PONTOS") %]     [% i18n("VALOR") %]
--------------------'----------'--------
[% FOREACH customer IN points_by_customer.customers.keys.sort -%]
[% customer.chars(20) | format("%-20s") %][% points_by_customer.customers.$customer.points | format("%.0f") | format("%10s") %][% points_by_customer.customers.$customer.points_value | format("%.0f") | format("%10s") %]
[% END -%]
----------------------------------------
[% i18n("TOTAIS") %]:[% points_by_customer.total_points | format("%.0f") | format("%23s") %][% points_by_customer.total_points_value | format("%.0f") | format("%10s") %]
[% END -%]

