Fixed #27735 -- Doc'd form widget l10n change (refs #15667).

This commit is contained in:
Tim Graham 2017-01-16 12:58:21 -05:00 committed by GitHub
parent b5511dddd6
commit 0f46bc67e2
1 changed files with 5 additions and 0 deletions

View File

@ -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
-------------------------------------------------------