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,
can_add_related seems to be an attribute on the widget, not the field, so try:
can_add_related
self.fields['person'].widget.can_add_related = False