I've read about the can_add_related feature here: https://code.djangoproject.com/ticket/9071
I tried using it this way:
def get_form(self, request, obj=None, **kwargs):
self.fields['person'].can_add_related = False
return super(OperationAdmin, self).get_form(request, obj, **kwargs)
But this throws a TypeError and I don't know how to solve this.
Can someone point me in the right direction?
Thank you.
See Question&Answers more detail:
os 与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…