Re: Using request.POST.copy() to get hidden field in html template

2011-11-30 Thread DrBloodmoney
On Wed, Nov 30, 2011 at 7:43 PM, jim wrote: > I'm trying to use request.POST.copy() to get a hidden field in an html > template.  The hidden field looks like: > > > > I also tried: > > > > In my view.py I have: > >      postdata = request.POST.copy() >       url =

Using request.POST.copy() to get hidden field in html template

2011-11-30 Thread jim
I'm trying to use request.POST.copy() to get a hidden field in an html template. The hidden field looks like: I also tried: In my view.py I have: postdata = request.POST.copy() url = str(postdata.get('url')) The value of url is None. Is there an additional trick to this?