Are there any filters or sth like that in twig template engine to format money or numbers?
Tell me more
×
Stack Overflow is a question and answer site for
professional and enthusiast programmers. It's 100% free, no registration required.
|
The Usage:
|
|||
|
|
|
Here's a filter that does number_format(): https://github.com/falmp/Twig-extensions/blob/master/lib/Twig/Extensions/Extension/Number.php |
|||||
|
|
If you are using an older version of twig and you don't want to install any extensions you can use the format filter like this: {{ "%.2f"|format(total) }} Not very nice, but it works. |
|||
|
|