Mercurial > p > roundup > code
view templates/classic/html/msg.index.html @ 3010:3a23308a8f57
fix (list) popup [SF#1083570]
| author | Richard Jones <richard@users.sourceforge.net> |
|---|---|
| date | Tue, 14 Dec 2004 23:27:44 +0000 |
| parents | 97f810f39d16 |
| children | 460eb0209a9e |
line wrap: on
line source
<tal:block metal:use-macro="templates/page/macros/icing"> <title metal:fill-slot="head_title" i18n:translate="" >List of messages - <span tal:replace="config/TRACKER_NAME" i18n:name="tracker"/></title> <span metal:fill-slot="body_title" tal:omit-tag="python:1" i18n:translate="">Message listing</span> <td class="content" metal:fill-slot="content"> <table class="messages" tal:condition="request/filter"> <tr><th colspan=2 class="header" i18n:translate="">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> </td> </tal:block>
