Code

Refactor setup.py.
[roundup.git] / templates / classic / html / msg.index.html
1 <tal:block metal:use-macro="templates/page/macros/icing">
2 <title metal:fill-slot="head_title" i18n:translate=""
3  >List of messages - <span tal:replace="config/TRACKER_NAME"
4  i18n:name="tracker"/></title>
5 <span metal:fill-slot="body_title" tal:omit-tag="python:1"
6  i18n:translate="">Message listing</span>
7 <td class="content" metal:fill-slot="content">
8 <table tal:define="batch request/batch" class="messages">
9  <tr><th colspan=2 class="header" i18n:translate="">Messages</th></tr>
10  <tal:block tal:repeat="msg batch">
11   <tr>
12    <th tal:content="string:Author: ${msg/author}">author</th>
13    <th tal:content="string:Date: ${msg/date}">date</th>
14   </tr>
15   <tr>
16    <td colspan="2"><pre tal:content="msg/content">content</pre></td>
17   </tr>
18  </tal:block>
20  <metal:block use-macro="templates/issue.index/macros/batch-footer" />
22 </table>
23 </td>
25 </tal:block>