view roundup/templates/classic/html/msg.index @ 1292:f7d9fefcae88

Fixes for SourceForge tracker bugs. - remember the change note on bad submissions [SF#625989] - highlight required form fields [SF#625989] add a couple of examples to the customisation doc too. un-reversed the message list so first messages appear first. fixed the messages header (post introduction of "remove")
author Richard Jones <richard@users.sourceforge.net>
date Mon, 21 Oct 2002 00:42:00 +0000
parents 9e7b2a54f862
children a2a57ec8fdf0
line wrap: on
line source

<tal:block metal:use-macro="templates/page/macros/icing">
<title metal:fill-slot="head_title">Message listing</title>
<td class="page-header-top" metal:fill-slot="body_title">
 <h2>Message listing</h2>
</td>
<td class="content" metal:fill-slot="content">
<table class="messages" tal:condition="request/filter">
 <tr><th colspan=2 class="header">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>

Roundup Issue Tracker: http://roundup-tracker.org/