Mercurial > p > roundup > code
changeset 1042:adcfdeac4e76
not sure how useful this is...
| author | Richard Jones <richard@users.sourceforge.net> |
|---|---|
| date | Wed, 04 Sep 2002 04:47:28 +0000 |
| parents | c28603c9f831 |
| children | 7eaa27fea606 |
| files | roundup/templates/classic/html/msg.index |
| diffstat | 1 files changed, 13 insertions(+), 8 deletions(-) [+] |
line wrap: on
line diff
--- a/roundup/templates/classic/html/msg.index Wed Sep 04 04:31:51 2002 +0000 +++ b/roundup/templates/classic/html/msg.index Wed Sep 04 04:47:28 2002 +0000 @@ -1,8 +1,13 @@ -<!-- dollarId: msg.index,v 1.3 2002/05/22 00:32:34 richard Exp dollar--> -<tr class="row-hilite"> - <td><display call="link('date')"></td> - <td><display call="plain('author')"></td> -</tr> -<tr class="msg-content"> - <td colspan=2><pre><display call="plain('content', escape=1)"></pre></td> -</tr> +hi +<table class="messages" tal:condition="request/filter"> + <tr><th colspan=2 class="header">Messages</th></tr> + <tal:block tal:repeat="msg issue/messages/reverse"> + <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>
