﻿id	summary	reporter	owner	description	type	status	component	version	severity	resolution	keywords	cc	stage	has_patch	needs_docs	needs_tests	needs_better_patch	easy	ui_ux
24913	Localize filter tag doesn't work for thousand separator then USE_L10N is False	Krupin Dmitry	Ana Balica	"In settings.py set
'''USE_L10N = False
USE_THOUSAND_SEPARATOR = True'''

In the template do this:
{{{
 {% localize on %}
      {{ object.price }}
 {% endlocalize %}
}}}
or
{{{
{{ object.price|localize }}
}}}

Switching on the localization doesn't trigger the `USE_THOUSAND_SEPARATOR` setting in case it's set to True.

I think in util.formats.number_format function should be something like this
{{{
 if use_l10n:
      force_grouping = True
}}}


"	Bug	assigned	Internationalization	1.7	Normal		localize		Accepted	0	0	1	0	0	0
