Mercurial > p > roundup > code
view roundup/templates/classic/html/msg.index @ 1143:c7119e74fcf8
Fixed:
. handling of None for Date/Interval/Password values in export/import
. handling of journal values in export/import
Also played with metakit backend some, fixing some of the unit tests
breakages. Hrm.
| author | Richard Jones <richard@users.sourceforge.net> |
|---|---|
| date | Fri, 13 Sep 2002 08:20:13 +0000 |
| parents | cf30c6cdca02 |
| children | b862bbf2067a |
line wrap: on
line source
<table class="messages" tal:condition="request/filter"> <tr><th colspan=2 class="header">Messages</th></tr> <tal:block tal:repeat="msg context/list"> <tr> <th tal:content="string:Author: ${msg/author}">author</th> <th tal:content="string:Date: ${msg/date}">date</th> </tr> <tr> <td colspan="2"><pre tal:content="msg/content">content</pre></td> </tr> </tal:block> </table>
