Mercurial > p > roundup > code
comparison templates/classic/html/msg.index.html @ 1591:21312a7564fd
moving templates around
| author | Richard Jones <richard@users.sourceforge.net> |
|---|---|
| date | Thu, 17 Apr 2003 03:38:00 +0000 |
| parents | |
| children | 3a4abf6d48c2 |
comparison
equal
deleted
inserted
replaced
| 1590:198dbefc1d5a | 1591:21312a7564fd |
|---|---|
| 1 <tal:block metal:use-macro="templates/page/macros/icing"> | |
| 2 <title metal:fill-slot="head_title"> | |
| 3 <span tal:replace="config/TRACKER_NAME" />: List of messages | |
| 4 </title> | |
| 5 <td class="page-header-top" metal:fill-slot="body_title"> | |
| 6 <h2>Message listing</h2> | |
| 7 </td> | |
| 8 <td class="content" metal:fill-slot="content"> | |
| 9 <table class="messages" tal:condition="request/filter"> | |
| 10 <tr><th colspan=2 class="header">Messages</th></tr> | |
| 11 <tal:block tal:repeat="msg context/list"> | |
| 12 <tr> | |
| 13 <th tal:content="string:Author: ${msg/author}">author</th> | |
| 14 <th tal:content="string:Date: ${msg/date}">date</th> | |
| 15 </tr> | |
| 16 <tr> | |
| 17 <td colspan="2"><pre tal:content="msg/content">content</pre></td> | |
| 18 </tr> | |
| 19 </tal:block> | |
| 20 </table> | |
| 21 </td> | |
| 22 | |
| 23 </tal:block> |
