> > #ModelForm #################################################### > class RecipeForm(ModelForm): > class Meta: > model = Recipe > exclude = ('user','thumbnail','tag_list') > > # View that creates form > #################################################### > def testForm(request, recipe_id): > r = Recipe.objects.get(pk=recipe_id) > f = RecipeForm(instance=r) > return render_to_response('chef/test-form.html', {'form':f})
Add the recipe_id to the dictionary of parameters being passed to the template: return render_to_response('chef/test-form.html', {'form':f, 'recipe_id':recipe_id}) > > # View that processes form > ################################################## > def editConfirm(request): > f = RecipeForm(request.POST, request.FILES) Change the above view, like this: # View that processes form ################################################## def editConfirm(request, recipe_id): r = Recipe.objects.get(pk=recipe_id) f = RecipeForm(instance=r, data=request.POST, files=request.FILES) Without the instance=r there, the RecipeForm you are getting here is in a mode where it will always create a new Recipe object. In chef/test-form.html, if you were previously submitting that form to /recipe/update/. Change that to /recipe/update/{{ recipe_id }}/ and modify your URL conf for editConfirm() so that the recipe_id gets passed to it. -Rajesh D --~--~---------~--~----~------------~-------~--~----~ 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 -~----------~----~----~----~------~----~------~--~---