view templates/classic/html/msg.index.html @ 3441:5791c9e6ab24

Fixes for SourceForge tracker items. - favicon.ico image may be changed with server config option (patch [SF#1355661]) - Password objects initialized from plaintext remember plaintext value (rfe [SF#1379447]) - use quoted printable encoding for nosy attachments that have MIME type 'text/plain' but contain 8-bit characters [SF#1381559]
author Alexander Smishlajev <a1s@users.sourceforge.net>
date Sun, 25 Dec 2005 16:24:11 +0000
parents a2889d22db4a
children
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 tal:define="batch request/batch" class="messages">
 <tr><th colspan=2 class="header" i18n:translate="">Messages</th></tr>
 <tal:block tal:repeat="msg batch">
  <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>

 <metal:block use-macro="templates/issue.index/macros/batch-footer" />

</table>
</td>

</tal:block>

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