Skip to content

Commit dd03542

Browse files
author
Richard Jones
committed
not sure how useful this is...
1 parent 34cebf9 commit dd03542

File tree

1 file changed

+13
-8
lines changed

1 file changed

+13
-8
lines changed
Lines changed: 13 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,13 @@
1-
<!-- dollarId: msg.index,v 1.3 2002/05/22 00:32:34 richard Exp dollar-->
2-
<tr class="row-hilite">
3-
<td><display call="link('date')"></td>
4-
<td><display call="plain('author')"></td>
5-
</tr>
6-
<tr class="msg-content">
7-
<td colspan=2><pre><display call="plain('content', escape=1)"></pre></td>
8-
</tr>
1+
hi
2+
<table class="messages" tal:condition="request/filter">
3+
<tr><th colspan=2 class="header">Messages</th></tr>
4+
<tal:block tal:repeat="msg issue/messages/reverse">
5+
<tr>
6+
<th tal:content="string:Author: ${msg/author}">author</th>
7+
<th tal:content="string:Date: ${msg/date}">date</th>
8+
</tr>
9+
<tr>
10+
<td colspan="2"><pre tal:content="msg/content">content</pre></td>
11+
</tr>
12+
</tal:block>
13+
</table>

0 commit comments

Comments
 (0)