Re: weird behaviour of forms in render_to_response

2009-03-14 Thread ihomest...@gmail.com
thanks for the info. I'll track the ticket. for now, I just convert the values to a dict and pass it over to my template. On Mar 14, 12:27 am, Malcolm Tredinnick wrote: > On Fri, 2009-03-13 at 21:08 -0700, ihome wrote: > > Hi, > > > I am using the latest django development version and have some

Re: weird behaviour of forms in render_to_response

2009-03-13 Thread Malcolm Tredinnick
On Fri, 2009-03-13 at 21:08 -0700, ihome wrote: > Hi, > > I am using the latest django development version and have some problem > with the render_to_response to render a template. Here is a short > snippet: > > return render_to_response('index.html', { > 'form': form, > 'ops

Re: weird behaviour of forms in render_to_response

2009-03-13 Thread ihomest...@gmail.com
On Mar 14, 12:08 am, ihome wrote: > Hi, > > I am using the latest django development version and have some problem > with the render_to_response to render a template. Here is a short > snippet: > >     return render_to_response('index.html', { >         'form': form, >         'ops' : ops, >  

weird behaviour of forms in render_to_response

2009-03-13 Thread ihome
Hi, I am using the latest django development version and have some problem with the render_to_response to render a template. Here is a short snippet: return render_to_response('index.html', { 'form': form, 'ops' : ops, }) form comes from a newly defined data form inher