[google-appengine] Re: dictionary displays problem

2009-08-06 Thread yuan ping wu
I found the solution,but in stiupd way~~
{% for key in text.items %}
  {% for e in key %}
  {{e}}
  {% endfor %}
{%endfor%}
put 1 more inner loop for looping though all elements of tuples
,any better way 2 do this, guys? Welcome 2 discuss

2009/8/5 yuan ping wu oscar821...@gmail.com

 in python.py:
 values={'mydictionary':{'a':'1','b':'2'}}


 {% for key  in mydictionry.items %}
   {{key}}
 {%endfor%}

 reuslt will be  (a,1) (b,2)

 if change to
 {% for key  in mydictionry %}
   {{key}}
 {%endfor%}

 it diplays: a b

 i still cunt get the value of key, tell me any modification of those code
 that maks it works ?

 2009/8/4 yuan ping wu oscar821...@gmail.com

 it gets no thing. noth display on web

 2009/8/4 Nick Johnson (Google) nick.john...@google.com


 Hi oscarWu,

 What error do you get, or if you don't get an error, what gets
 displayed? And what is the exact template snippet you're using for
 this? We need more details in order to help.

 -Nick Johnson

 On Mon, Aug 3, 2009 at 4:04 AM, oscarWuoscar821...@gmail.com wrote:
 
  I wanna put my dicitonary object on template
  sth more like
 
  body
 
  {%for value,key in dictionary.items%}
  display key:display value
  {%endfor%}
  /body
 
 
  but my1 doesnt word, any1 can provide me specific code ?
 
  
 



 --
 Nick Johnson, Developer Programs Engineer, App Engine

 




--~--~-~--~~~---~--~~
You received this message because you are subscribed to the Google Groups 
Google App Engine group.
To post to this group, send email to google-appengine@googlegroups.com
To unsubscribe from this group, send email to 
google-appengine+unsubscr...@googlegroups.com
For more options, visit this group at 
http://groups.google.com/group/google-appengine?hl=en
-~--~~~~--~~--~--~---



[google-appengine] Re: dictionary displays problem

2009-08-04 Thread yuan ping wu
Not working ,help plz

2009/8/4 djidjadji djidja...@gmail.com


 Does this work?

 body
 {%for key in dictionary %}
{{key}}:{{display.key}}
 {%endfor%}
 /body


 2009/8/3 oscarWu oscar821...@gmail.com:
  
  I wanna put my dicitonary object on template
  sth more like
 
  body
 
  {%for value,key in dictionary.items%}
  display key:display value
  {%endfor%}
  /body
 
 
  but my1 doesnt word, any1 can provide me specific code ?
 
  
 

 


--~--~-~--~~~---~--~~
You received this message because you are subscribed to the Google Groups 
Google App Engine group.
To post to this group, send email to google-appengine@googlegroups.com
To unsubscribe from this group, send email to 
google-appengine+unsubscr...@googlegroups.com
For more options, visit this group at 
http://groups.google.com/group/google-appengine?hl=en
-~--~~~~--~~--~--~---



[google-appengine] Re: dictionary displays problem

2009-08-04 Thread yuan ping wu
it gets no thing. noth display on web

2009/8/4 Nick Johnson (Google) nick.john...@google.com


 Hi oscarWu,

 What error do you get, or if you don't get an error, what gets
 displayed? And what is the exact template snippet you're using for
 this? We need more details in order to help.

 -Nick Johnson

 On Mon, Aug 3, 2009 at 4:04 AM, oscarWuoscar821...@gmail.com wrote:
 
  I wanna put my dicitonary object on template
  sth more like
 
  body
 
  {%for value,key in dictionary.items%}
  display key:display value
  {%endfor%}
  /body
 
 
  but my1 doesnt word, any1 can provide me specific code ?
 
  
 



 --
 Nick Johnson, Developer Programs Engineer, App Engine

 


--~--~-~--~~~---~--~~
You received this message because you are subscribed to the Google Groups 
Google App Engine group.
To post to this group, send email to google-appengine@googlegroups.com
To unsubscribe from this group, send email to 
google-appengine+unsubscr...@googlegroups.com
For more options, visit this group at 
http://groups.google.com/group/google-appengine?hl=en
-~--~~~~--~~--~--~---