I receive in my templates some numerical data from a view, for example a salary for this practical case 100,000:
<td>{{ role.salary }}</td>
But in the tenplate he shows it to me with x decimals:
100000,33333333
How can I format for example 2 decimals or no decimal in the template?
Thanks in advance.