From 7aa851c05d80ef75581975939ff5c48b87bcae08 Mon Sep 17 00:00:00 2001 From: Joseph Kocherhans Date: Tue, 18 Mar 2008 00:50:15 +0000 Subject: [PATCH] Added a warning to the get_form hook docstring. git-svn-id: http://code.djangoproject.com/svn/django/branches/newforms-admin@7278 bcc190cf-cafb-0310-a4f2-bffc1f526a37 --- django/contrib/admin/options.py | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/django/contrib/admin/options.py b/django/contrib/admin/options.py index 1db5ac548e..ccb31a7d4d 100644 --- a/django/contrib/admin/options.py +++ b/django/contrib/admin/options.py @@ -308,6 +308,11 @@ class ModelAdmin(BaseModelAdmin): """ Returns a Form class for use in the admin add view. This is used by add_view and change_view. + + Note that if you override this method, your form will *not* + automatically get the custom admin widgets. raw_id_fields, fields, + fieldsets, filter_vertical, and filter_horizonal will not apply to + your form. You will have manually specify those widgets. """ if self.declared_fieldsets: fields = flatten_fieldsets(self.declared_fieldsets)