Advertisement
Guest User

Untitled

a guest
May 26th, 2017
57
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.80 KB | None | 0 0
  1. <h1>Usage Template</h1>
  2.  
  3. <h2>With integer to decimal conversion</h2>
  4. <p>
  5. {% include numf.html number=12345 %} <!-- output is 12.345,00 --><br />
  6. {% include numf.html number=12345 decimals=0 %} <!-- output is 12.345 --><br />
  7. {% include numf.html number=12345 decimals=4 %} <!-- output is 12.345.0000 --><br />
  8. {% include numf.html number=12345 ds='.' ts=',' %} <!-- output is 12,345.00 --><br />
  9. </p>
  10.  
  11. <h2>Using decimals</h2>
  12. <p><strong>NOTE! numbers are automatically rounded</strong></p>
  13. <p>
  14. {% include numf.html number=12345.6789 %} <!-- output 12.345,68 --><br />
  15. {% include numf.html number=12345.6789 decimals=0 %} <!-- output 12.346 --><br />
  16. {% include numf.html number=12345.6789 ds='.' ts=',' %} <!-- output is 12,345.68 --><br />
  17. </p>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement