Is there a direct approach to format numbers in jinja2?

PythonGoogle App-EngineJinja2

Python Problem Overview


I need to format decimal numbers in jinja2.

When I need to format dates, I call the strftime() method in my template, like this:

{{ somedate.strftime('%Y-%m-%d') }}

I wonder if there is a similar approach to do this over numbers.

Thanks in advance!

Python Solutions


Solution 1 - Python

You can do it simply like this, the Python way:

{{ '%04d' % 42 }}

{{ 'Number: %d' % variable }}

Or using that method:

{{ '%d' | format(42) }}

I personally prefer the first one since it's exactly like in Python.

Solution 2 - Python

I want to highlight Joran Beasley's comment because I find it the best solution:

Original comment:

> can you not do {{ "{0:0.2f}".format(my_num) }} or {{ my_num|format "%0.2f" }} (wsgiarea.pocoo.org/jinja/docs/filters.html#format) – Joran Beasley Oct 1 '12 at 21:07`

Indeed, {{ '{0:0.2f}'.format(100) }} works fantastically.

This is just python string formatting. Given the first argument, {0}, format it with the following format 0.2f.

Solution 3 - Python

You could use round it will let you round the number to a given precision usage is:

 round(value, precision=0, method='common')

The first parameter specifies the precision (default is 0), the second the rounding method from which you can choose 3:

'common' rounds either up or down
'ceil' always rounds up
'floor' always rounds down

Solution 4 - Python

Formatting and padding works well in the same way.

{{ "{0}".format(size).rjust(15) }}

Attributions

All content for this solution is sourced from the original question on Stackoverflow.

The content on this page is licensed under the Attribution-ShareAlike 4.0 International (CC BY-SA 4.0) license.

Content TypeOriginal AuthorOriginal Content on Stackoverflow
QuestionLucasView Question on Stackoverflow
Solution 1 - PythonLipisView Answer on Stackoverflow
Solution 2 - PythonYuji 'Tomita' TomitaView Answer on Stackoverflow
Solution 3 - PythonTkingovrView Answer on Stackoverflow
Solution 4 - PythonSandip BhattacharyaView Answer on Stackoverflow