Sorry... one has an object like so:
class bug((models.Model): #... status = models.ForeignKey(Status) When the user makes a submission with a form, I want the status to always point to the status 1. I've tried this, with no success: def submit(request): manipulator = Merge_Request.AddManipulator() if request.POST: new_data = request.POST.copy() errors = manipulator.get_validation_errors(new_data) manipulator.do_html2python(new_data) new_data['status_id'] = 1 #keys = new_data.keys() #return HttpResponse("%s" % keys) #return HttpResponse("status_id = %s " % new_data['status_id']) #try: new_data = manipulator.save(new_data) #except OperationalError, inst: # out = """ submission error %s """ % (new_data.keys()) # return HttpResponse(out) else: errors = new_data = {} form = forms.FormWrapper(manipulator, new_data, errors) return render_to_response('mergemanager/merge_request_submit.html', {'form' : form}) The save always fails telling me that status_id is set to null. How do I do this? namaste, Mark On 10/10/06, Mark Hattarki <[EMAIL PROTECTED]> wrote: > If one has an object like so: > > class bug((models.Model): > #... > status = models.ForeignKey(Status) > > No > --~--~---------~--~----~------------~-------~--~----~ 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 -~----------~----~----~----~------~----~------~--~---