Hello,
I'm loading a json string in Django using simplejson
obj = json.loads('{"name": "joe"}')
person = obj.name
this throws an error: 'dict' object has no attribute 'name'
but when I pass 'obj' down to the view template and print it out via {{ obj.name }} it works!
Why??
Many thanks,
g