I did the following. Not sure if it's right:
class FooAdmin(admin.ModelAdmin):
fieldsets = (
# ...
)
other_fieldsets = (
# ...
)
def get_fieldsets (self, request, obj = None):
if some_cond:
return self.other_fieldsets
return self.fieldsets
Update: def missing. But of course, that wasn't the problem once I get a Django checkup error.
Now, on this admin model, when I save it gives the standard field verification error on top, but no field is marked as invalid. I tried setting all the fields to blank = True, but I can only make it work removing get_fieldsets().
defbefore your get_fieldsets? – DTing Mar 18 '11 at 17:53get_fieldsets– Yuji Tomita Mar 18 '11 at 18:13