I\'m trying to format numbers. Examples:
1 => 1 12 => 12 123 => 123 1234 => 1,234 12345 => 12,345
It strikes as a
Django's contributed humanize application does this:
{% load humanize %} {{ my_num|intcomma }}
Be sure to add 'django.contrib.humanize' to your INSTALLED_APPS list in the settings.py file.
'django.contrib.humanize'
INSTALLED_APPS
settings.py