I am trying to round a decimal number this is my number and my code
68.125
the output should be 68.13 and I get 68.12
code:
{% set v_cuotas = doc.saldo_contrato/doc.plazo %}
VALUE: <span class="texto_liviano"></span>{{v_cuotas|round(2)|float}}<br>
Thanks in advance