summaryrefslogtreecommitdiff
path: root/docs/releases/6.1.txt
diff options
context:
space:
mode:
authorantoliny0919 <antoliny0919@gmail.com>2025-08-07 22:17:50 +0900
committerJacob Walls <jacobtylerwalls@gmail.com>2026-02-27 07:43:45 -0500
commit187a789f99ecbc708de517c6b54d480b68ba59fe (patch)
treea9ad3ba592bf6c65cb14b39110adbfbaa2825a51 /docs/releases/6.1.txt
parentd4ab33af061c13e290b6996756b2c72578891285 (diff)
Fixed #34643 -- Moved inputs beneath labels and errors in admin forms.
Thanks Sarah Boyce and Jacob Walls for reviews. Co-authored-by: Hrushikesh Vaidya <hrushikeshrv@gmail.com>
Diffstat (limited to 'docs/releases/6.1.txt')
-rw-r--r--docs/releases/6.1.txt18
1 files changed, 18 insertions, 0 deletions
diff --git a/docs/releases/6.1.txt b/docs/releases/6.1.txt
index 6c6890b811..ef6ae1d424 100644
--- a/docs/releases/6.1.txt
+++ b/docs/releases/6.1.txt
@@ -99,6 +99,19 @@ Minor features
preserve :ref:`named groups <field-choices-named-groups>` (e.g.
``choices=[("Group", [("1", "Item")]), ...]``).
+* In order to improve accessibility of the admin change forms:
+
+ * Form fields are now shown below their respective labels instead of next to
+ them.
+
+ * Help text is now shown after the field label and before the field input.
+
+ * Validation errors are now shown after the help text and before the field
+ input.
+
+ * Checkboxes are an exception to the above changes and continue to be
+ displayed in their original layout.
+
:mod:`django.contrib.admindocs`
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
@@ -380,6 +393,11 @@ backends.
* Set the new ``DatabaseFeatures.supports_inspectdb`` attribute to ``False``
if the management command isn't supported.
+:mod:`django.contrib.admin`
+---------------------------
+
+* The ``wide`` class is removed, as it was made obsolete by the new layout.
+
:mod:`django.contrib.gis`
-------------------------