summaryrefslogtreecommitdiff
path: root/docs
diff options
context:
space:
mode:
authorTim Graham <timograham@gmail.com>2017-06-17 08:12:05 -0400
committerTim Graham <timograham@gmail.com>2017-06-17 17:16:08 -0400
commitf0ec88fb63f39db38ab027477167f9d7a7ea151c (patch)
tree9bd14b68fb3ec3aa21138b0c4fc2df1a24a80d83 /docs
parent49de4f15413a4f281e835e383a7b1aa202a3dd7e (diff)
[1.11.x] Fixed #28303 -- Prevented localization of attribute values in the DTL attrs.html widget template.
Backport of 3b050fd0d0b8dbf499bdb44ce12fa926298c0bd0 from master
Diffstat (limited to 'docs')
-rw-r--r--docs/releases/1.11.3.txt4
1 files changed, 4 insertions, 0 deletions
diff --git a/docs/releases/1.11.3.txt b/docs/releases/1.11.3.txt
index 5ff33e42e6..1e2ddddb66 100644
--- a/docs/releases/1.11.3.txt
+++ b/docs/releases/1.11.3.txt
@@ -40,3 +40,7 @@ Bugfixes
context. It's now an empty string (as it is for the original function-based
``login()`` view) if the corresponding parameter isn't sent in a request (in
particular, when the login page is accessed directly) (:ticket:`28229`).
+
+* Prevented attribute values in the ``django/forms/widgets/attrs.html``
+ template from being localized so that numeric attributes (e.g. ``max`` and
+ ``min``) of ``NumberInput`` work correctly (:ticket:`28303`).