From 6536f7597b4cbccc53846d099fbc7a6b13929ab7 Mon Sep 17 00:00:00 2001 From: Tim Graham Date: Mon, 6 Aug 2012 16:15:09 -0400 Subject: [PATCH] [1.4.X] Fixed #17053 - Added a note about USE_THOUSAND_SEPARATOR setting to localizations docs. Thanks shelldweller for the draft patch. Backport of 4f3a6b853a from master --- docs/topics/i18n/formatting.txt | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/docs/topics/i18n/formatting.txt b/docs/topics/i18n/formatting.txt index a459b95042..a272626ad4 100644 --- a/docs/topics/i18n/formatting.txt +++ b/docs/topics/i18n/formatting.txt @@ -23,7 +23,10 @@ necessary to set :setting:`USE_L10N = True ` in your settings file. The default :file:`settings.py` file created by :djadmin:`django-admin.py startproject ` includes :setting:`USE_L10N = True ` - for convenience. + for convenience. Note, however, that to enable number formatting with + thousand separators it is necessary to set :setting:`USE_THOUSAND_SEPARATOR + = True ` in your settings file. Alternatively, you + could use :tfilter:`intcomma` to format numbers in your template. .. note::