Currency filter

1
2
3
4
5
6
7
8
9
from django import template
import locale
locale.setlocale(locale.LC_ALL, '')
register = template.Library()
 
 
@register.filter()
def currency(value):
    return locale.currency(value, grouping=True)

More like this

  1. dollarize numbers by alexdong 6 years, 1 month ago
  2. currency filter without using locale by andzep 2 years, 3 months ago
  3. Widget for Money values on Geraldo Reports by marinho 4 years, 1 month ago
  4. Name Capitalize Filter by hotani 6 years ago
  5. PHP's number_format like template filter by janr 5 years, 1 month ago

Comments

MasonM (on July 24, 2008):

Cool, I didn't know about the locale module. I had to change line 3 to "locale.setlocale(locale.LC_ALL, 'en_US')" for this to work on a shared server I use.

#

cornbread (on August 14, 2008):

This works great on my ubuntu-hardy laptop but I can't get it to work on my ubuntu-gutsy server.

I get some kind of a Locale C error.

#

cornbread (on August 18, 2008):

FIGURED IT OUT!!!

I had to set up the language pack on my ubuntu-server... Apparently this doesn't get done by default on the server version of ubuntu.

sudo ./install-language-pack en_US then restart x and you're golden.

#

gourneau (on September 21, 2008):

Thanks for this filter.

I also had to use change line 3 to

"locale.setlocale(locale.LC_ALL, 'en_US')"

#

dougal (on March 12, 2009):

hmm this doesn't seem to be working for me. Nothing is displayed on the page?

#

dougal (on March 12, 2009):

Not really sure why but I had to change line 9 to;

return locale.currency(value, symbol=False, grouping=True)

and then I added the GBP symbol (£) myself. Otherwise nothing was ever displayed.

#

astur (on August 14, 2009):

Hm... sometimes 'value' in context may be string. That will be better, imho:

return locale.currency(float(value), grouping=True)

#

backdoc (on May 15, 2010):

Good tip. But, it didn't work on my OSX Leopard box without modification. The main points of difference were that I had to use 'en_US.UTF-8' and I was passing in a decimal type. So, I had to add the Decimal code. You can find a supported locale from the command line with this command "locale -a" (credit to "http://stackoverflow.com/questions/1259971/os-locale-support-for-use-in-python").

1 from django import template 2 from decimal import Decimal 3 import locale 4 locale.setlocale(locale.LC_ALL, 'en_US.UTF-8') 5 register = template.Library() 6 7 @register.filter() 8 def currency(value): 9 return locale.currency(Decimal(value), grouping=True)

#

backdoc (on May 15, 2010):

My code above lost its formatting. The line numbers are included. So, maybe you can decipher it.

#

lablinux (on November 26, 2010):

i modify your snip to have the money simbol:

from django.utils.translation import ugettext

from django.utils.safestring import mark_safe

I use first import to translate the simbol money (in my django.po)

msgid "currency"

msgstr "\€"

I use the second import to transform "\&amp\€" to "\€"

and return this

return mark_safe( '%s %s' %(locale.currency(value, symbol=False, grouping=True), ugettext('currency')) )

{"1234.56"|currency} return 1.234,55 €

#

mferreira (on August 21, 2011):

I used the current configured language for the locale. Here's what worked for me:

from django import template
from django.utils import translation
import locale
locale.setlocale(locale.LC_ALL, translation.to_locale(translation.get_language()))

register = template.Library()

@register.filter_function
def currency(value):
    return locale.currency(value, grouping=True)

#

(Forgotten your password?)