Ticket #16452: DATE_INPUT_FORMATS_L10N_patch.txt

File DATE_INPUT_FORMATS_L10N_patch.txt, 676 bytes (added by brooks.travis@…, 13 years ago)

Patch

Line 
1Index: docs/ref/settings.txt
2===================================================================
3--- docs/ref/settings.txt (revision 16537)
4+++ docs/ref/settings.txt (working copy)
5@@ -641,7 +641,8 @@
6 field. Formats will be tried in order, using the first valid.
7 Note that these format strings are specified in Python's datetime_ module
8 syntax, that is different from the one used by Django for formatting dates
9-to be displayed.
10+to be displayed. Also note that if :setting:`USE_L10N` is set to ``True``, then the
11+locale-dictated format has higher precedence and will be applied instead.
12
13 See also :setting:`DATETIME_INPUT_FORMATS` and :setting:`TIME_INPUT_FORMATS`.
14
Back to Top