Re: python list in javascript

2012-04-20 Thread Daniel Sokolowski
see http://docs.python.org/library/json.html So you output it in JSON format into a JS variable and then you can use it that way. From: dummyman dummyman Sent: Friday, April 20, 2012 12:38 PM To: django-users@googlegroups.com Cc: Philip Mountifield Subject: Re: python list in javascript no

Re: python list in javascript

2012-04-20 Thread dummyman dummyman
no tats nt the error i ve initialised it as a global variable. I need a suitable way to echo variable which is a dictionary in views.py to a javascript list in django template On Fri, Apr 20, 2012 at 7:39 PM, Philip Mountifield wrote: > "title" is never defined in that code snippet so it would b

Re: python list in javascript

2012-04-20 Thread Philip Mountifield
"title" is never defined in that code snippet so it would be None. Did you mean "key"? The syntax looks wrong too for assigning to someobject. On 20/04/2012 13:53, dummyman dummyman wrote: Hi, I have a python dictionary which i want to add to the javascript object on load in django template

Re: python list in javascript

2012-04-20 Thread Marcin Tustin
You'd have to show us the generated output. In any case, this is more of a javascript question. If you want to put some data into a rendered page, use the json module to create the data in your view, and paste the whole json string using your template. On Fri, Apr 20, 2012 at 13:53, dummyman dumm