Hello, I have a model with two ForeignKeys (User and another model). I cannot set them to editable=False, because Admin needs to see them and modify.
So I've created ModelForm and excluded those two fields. And now: 1) when I'm trying to *update* the content by MyModelForm.save() : there is error that foreignkeys cannot be null 2) i thought that it saves (inserts) if there isn't any record already , and if there is - it just updates - but it does not(?) see 1) 3) i've tried to assign these values manually: full = Full() form_full = FullForm(full, request.POST) form_full.my_first_fk = 2 form_full.my_second_fk = 3 form_full.save() but without success. Of course I can just use the form to check if it is_valid() and then use model with request.POST, but it is not elegant. What do you think about it? What am I doing wrong? --~--~---------~--~----~------------~-------~--~----~ You received this message because you are subscribed to the Google Groups "Django users" group. To post to this group, send email to django-users@googlegroups.com To unsubscribe from this group, send email to [EMAIL PROTECTED] For more options, visit this group at http://groups.google.com/group/django-users?hl=en -~----------~----~----~----~------~----~------~--~---