On Fri, Dec 11, 2009 at 3:13 PM, Andy <asdjohn...@gmail.com> wrote: > Thanks for the response Shawn. I have done what you suggested, > assigning a variable named order_info and can use it if I use > render_to_response in my order view. But I want to use > HttpResponseRedirect after the form is saved. I'm thinking I need to > get the order_info variable into my order_complete view. How can I do > this? > > articles = Context({'articles': Articles.objects.all()}) > > def order(request): > if request.method == 'POST': > form = OrderForm(request.POST) > if form.is_valid(): > current_order = form.save() > order_info = Context({'order_info': current_order}) > return render_to_response('order_complete.html', > order_info, > articles) #this works > return HttpResponseRedirect('/order_complete/') #but > this is what I > want to use > else: > form = OrderForm() > > return render_to_response('order.html', {'form': form}, articles) > > def order_complete(request): #how can I put order_info here? > return render_to_response('order_complete.html', order_info, > articles) >
You should create a named view for your order_complete view, that takes the id of your current order, and then redirect to that instead. Create a named view with an argument: http://docs.djangoproject.com/en/dev/topics/http/urls/#named-groups Get a url to a named view with an argument: http://docs.djangoproject.com/en/dev/topics/http/urls/#django.core.urlresolvers.reverse Cheers Tom -- You received this message because you are subscribed to the Google Groups "Django users" group. To post to this group, send email to django-us...@googlegroups.com. To unsubscribe from this group, send email to django-users+unsubscr...@googlegroups.com. For more options, visit this group at http://groups.google.com/group/django-users?hl=en.