summaryrefslogtreecommitdiff
path: root/docs
diff options
context:
space:
mode:
Diffstat (limited to 'docs')
-rw-r--r--docs/ref/contrib/admin/index.txt21
1 files changed, 21 insertions, 0 deletions
diff --git a/docs/ref/contrib/admin/index.txt b/docs/ref/contrib/admin/index.txt
index 407dd88e71..716e3180db 100644
--- a/docs/ref/contrib/admin/index.txt
+++ b/docs/ref/contrib/admin/index.txt
@@ -1465,6 +1465,27 @@ templates used by the :class:`ModelAdmin` views:
See also :ref:`saving-objects-in-the-formset`.
+.. warning::
+
+ All hooks that return a ``ModelAdmin`` property return the property itself
+ rather than a copy of its value. Dynamically modifying the value can lead
+ to surprising results.
+
+ Let's take :meth:`ModelAdmin.get_readonly_fields` as an example::
+
+ class PersonAdmin(admin.ModelAdmin):
+ readonly_fields = ["name"]
+
+ def get_readonly_fields(self, request, obj=None):
+ readonly = super().get_readonly_fields(request, obj)
+ if not request.user.is_superuser:
+ readonly.append("age") # Edits the class attribute.
+ return readonly
+
+ This results in ``readonly_fields`` becoming
+ ``["name", "age", "age", ...]``, even for a superuser, as ``"age"`` is added
+ each time non-superuser visits the page.
+
.. method:: ModelAdmin.get_ordering(request)
The ``get_ordering`` method takes a ``request`` as parameter and