Here is the entire template:
{%block body%}
<h2>List TaskLogs</h2>
<!-- List of TaskLogs -->
<ul>
<table border=1>
<tr>
<th>Customer<BR>Domain</th>
<th>Worker Email</th>
<th>TaskCode</th>
<th>StartedTime</th>
<th>CompletedTime</th>
<th>ResultFlag</th>
<th>Issue</th>
</tr>
{%for TaskLog in TaskLogs%}
<tr>
<td>{{TaskLog.customerDomain}}</td>
<td>{{TaskLog.workerEmail}}</td>
<td>{{TaskLog.taskCode}}</td>
<td>{{TaskLog.eventStartedDateTime}}</td>
<td>{{TaskLog.eventCompletedDateTime}}</td>
<td>{{TaskLog.resultFlag}}</td>
<td>{{TaskLog.issues}}</td>
</tr>
<!-- <a href="{%url views.edit gift.key.id%}">{{gift.name|escape}}</
a>
- created {{gift.created|date:"Y/m/d H:i:s"}} by {{gift.giver}}
-->
{%endfor%}
</ul>
</table>
{%endblock%}
--~--~---------~--~----~------------~-------~--~----~
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
-~----------~----~----~----~------~----~------~--~---