Fixed arguments for get_inline_instances example; refs #17856
This commit is contained in:
parent
cfb3eb2e3d
commit
300d052713
|
@ -1148,7 +1148,7 @@ templates used by the :class:`ModelAdmin` views:
|
||||||
inlines = [MyInline, SomeOtherInline]
|
inlines = [MyInline, SomeOtherInline]
|
||||||
|
|
||||||
def get_formsets(self, request, obj=None):
|
def get_formsets(self, request, obj=None):
|
||||||
for inline in self.get_inline_instances():
|
for inline in self.get_inline_instances(request, obj):
|
||||||
# hide MyInline in the add view
|
# hide MyInline in the add view
|
||||||
if isinstance(inline, MyInline) and obj is None:
|
if isinstance(inline, MyInline) and obj is None:
|
||||||
continue
|
continue
|
||||||
|
|
Loading…
Reference in New Issue