From 56b364bacca0d6a6cd8fbcd93aeb49f3ad46e58c Mon Sep 17 00:00:00 2001 From: Botond Beres Date: Fri, 27 Oct 2017 16:23:40 +0100 Subject: [PATCH] Fixed #28205 -- Doc'd that ModelAdmin.prepopulated_fields only works on add forms. --- docs/ref/contrib/admin/index.txt | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/docs/ref/contrib/admin/index.txt b/docs/ref/contrib/admin/index.txt index 74e236b0a4..05f0bfcbbc 100644 --- a/docs/ref/contrib/admin/index.txt +++ b/docs/ref/contrib/admin/index.txt @@ -1044,6 +1044,10 @@ subclass:: of the source fields, and then by transforming that result into a valid slug (e.g. substituting dashes for spaces). + Fields are prepopulated on add forms but not on change forms. It's usually + undesired that slugs change after an object is created (which would cause + an object's URL to change if the slug is used in it). + ``prepopulated_fields`` doesn't accept ``DateTimeField``, ``ForeignKey``, ``OneToOneField``, and ``ManyToManyField`` fields.