Hi,

I want to render the contents of a db.Expando in an HTML table.

The Expando has user defined fields so I can't hard code them.

What I'm doing is something like this:

<table>

{% for score in scores %}
<tr>
{% for field in fields %}
<td> {{ score.{{field.name}}  }} </td>
{% endfor %}
</tr>
{% endfor %}
</table>

but this doesn't work.

Whats the best approach to solve this problem ?

thanks,

riq.

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

Reply via email to