summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTim Graham <timograham@gmail.com>2017-01-16 12:58:21 -0500
committerGitHub <noreply@github.com>2017-01-16 12:58:21 -0500
commit0f46bc67e26d439517bb0d0cb474c72859e76b60 (patch)
treee7a23085a00dff4a8400ab0a7e69466acfddb09e
parentb5511dddd617d378c787c643324d259230e3861b (diff)
Fixed #27735 -- Doc'd form widget l10n change (refs #15667).
-rw-r--r--docs/releases/1.11.txt5
1 files changed, 5 insertions, 0 deletions
diff --git a/docs/releases/1.11.txt b/docs/releases/1.11.txt
index 84f5f749b5..f47e9d3b20 100644
--- a/docs/releases/1.11.txt
+++ b/docs/releases/1.11.txt
@@ -579,6 +579,11 @@ Some undocumented classes in ``django.forms.widgets`` are removed:
The ``Widget.format_output()`` method is removed. Use a custom widget template
instead.
+Some widget values, such as ``<select>`` options, are now localized if
+``settings.USE_L10N=True``. You could revert to the old behavior with custom
+widget templates that uses the :ttag:`localize` template tag to turn off
+localization.
+
``django.Template.render()`` prohibits non-dict context
-------------------------------------------------------