Skip to content

Commit

Permalink
Fixed #8367 -- Pass the object to get_form from get_fieldsets in Mode…
Browse files Browse the repository at this point in the history
…lAdmin. Thanks jarrow for catching this.

git-svn-id: http://code.djangoproject.com/svn/django/trunk@8479 bcc190cf-cafb-0310-a4f2-bffc1f526a37
  • Loading branch information
brosner committed Aug 23, 2008
1 parent 324befc commit 58c579b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion django/contrib/admin/options.py
Expand Up @@ -247,7 +247,7 @@ def get_fieldsets(self, request, obj=None):
"Hook for specifying fieldsets for the add form."
if self.declared_fieldsets:
return self.declared_fieldsets
form = self.get_form(request)
form = self.get_form(request, obj)
return [(None, {'fields': form.base_fields.keys()})]

def get_form(self, request, obj=None, **kwargs):
Expand Down

0 comments on commit 58c579b

Please sign in to comment.