File tree Expand file tree Collapse file tree 1 file changed +13
-8
lines changed
roundup/templates/classic/html Expand file tree Collapse file tree 1 file changed +13
-8
lines changed Original file line number Diff line number Diff line change 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>
You can’t perform that action at this time.
0 commit comments