Re: Problem with number format when not using L10N

2013-12-03 Thread Yonel Ceruto González
It is understood that if I have enabled the thousands separator USE_THOUSAND_SEPARATOR = True and NUMBER_GROUPING > 0 to display all numbers with the pattern: #THOUSAND_SEPARATOR###DECIMAL_SEPARATOR## If is enabled or not USE_L10N only determines the "values" of DECIMAL_SEPARATOR and THOUS

Re: Problem with number format when not using L10N

2013-12-03 Thread Claude Paroz
This is the topic of https://code.djangoproject.com/ticket/21544 where you can read my position. -- You received this message because you are subscribed to the Google Groups "Django developers" group. To unsubscribe from this group and stop receiving emails from it, send an email to django-dev

Re: Problem with number format when not using L10N

2013-12-03 Thread Yonel Ceruto González
I think the configuration of the variable USE_L10N aims at in this case, determine the format of number and not condition the use of the grouping of thousands. -- You received this message because you are subscribed to the Google Groups "Django developers" group. To unsubscribe from this group

Re: Problem with number format when not using L10N

2013-12-03 Thread Yonel Ceruto González
Rectify the frontline: I want to use the grouping of thousands in my numeric formats, for which I use the "floatformat" filter. El martes, 3 de diciembre de 2013 08:13:21 UTC-5, Yonel Ceruto González escribió: > > Deseo usar la agrupación de millares en mis formatos numéricos, for which > I

Problem with number format when not using L10N

2013-12-03 Thread Yonel Ceruto González
Deseo usar la agrupación de millares en mis formatos numéricos, for which I use the "floatformat" filter. My configuration in "settings.py" is: USE_L10N = False USE_THOUSAND_SEPARATOR = True NUMBER_GROUPING = 3 Showing my numbers without the grouping of thousands. When I check in depth why