django doesnt accept the serializeArray POST data

2012-10-22 Thread David Lee
Hi,all! I got a problem, https://github.com/blueimp/jQuery-File-Upload/issues/1792 , does Django doesnt accept the serializeArray POST data request or how to do it ? any help will greatly appreciated. -- You received this message because you are

Re: loop user.get_profile displays none in a template

2012-10-18 Thread David Lee
how can I get each key and value by loop or another method? I wanna display all infomations about a model instance 在 2012年10月19日星期五UTC+8上午11时33分48秒,Matt Schinckel写道: > > user.get_profile() returns a model instance, not a dict. Model instances > have no .items() method. > > Matt. > -- You

loop user.get_profile displays none in a template

2012-10-18 Thread David Lee
Hi,pal ! in a template, {{ user.get_profile.user }} {{ user.get_profile.birthday }} {{ user.get_profile.name }} {% for key,value in user.get_profile.items %}{{ value }}{% endfor %} the last line doesnt work and displays none . Any guidance would be greatly appreciated. models.py: *class