diff roundup/templates/classic/html/msg.item @ 1077:6b0d9ec988b8

cleanup
author Richard Jones <richard@users.sourceforge.net>
date Mon, 09 Sep 2002 03:28:20 +0000
parents 954ad22eb7d9
children 36ec30d286ea
line wrap: on
line diff
--- a/roundup/templates/classic/html/msg.item	Mon Sep 09 03:20:09 2002 +0000
+++ b/roundup/templates/classic/html/msg.item	Mon Sep 09 03:28:20 2002 +0000
@@ -2,39 +2,41 @@
 <table class="form">
 
 <tr>
- <td nowrap>Author</td>
+ <th nowrap>Author</th>
  <td tal:content="context/author"></td>
 </tr>
 
 <tr>
- <td nowrap>Recipients</td>
+ <th nowrap>Recipients</th>
  <td tal:content="context/recipients"></td>
 </tr>
 
 <tr>
- <td nowrap>Date</td>
+ <th nowrap>Date</th>
  <td tal:content="context/date"></td>
 </tr>
+</table>
 
-<tr>
- <td colspan=2><pre tal:content="context/content"></pre></td>
-</tr>
+<table class="messages">
+ <tr><th colspan=2 class="header">Content</th></tr>
+ <tr>
+  <td colspan=2><pre tal:content="context/content"></pre></td>
+ </tr>
+</table>
 
- <table class="files" tal:condition="context/files">
-  <tr><th colspan="2" class="header">Files</th></tr>
-  <tr><th>File name</th><th>Uploaded</th></tr>
-  <tr tal:repeat="file context/files">
-   <td>
-    <a tal:attributes="href string:file${file/id}/${file/name}"
-       tal:content="file/name">dld link</a>
-   </td>
-   <td>
-    <span tal:content="file/creator">creator's name</span>,
-    <span tal:content="file/creation">creation date</span>
-   </td>
-  </tr>
- </table>
+<table class="files" tal:condition="context/files">
+ <tr><th colspan="2" class="header">Files</th></tr>
+ <tr><th>File name</th><th>Uploaded</th></tr>
+ <tr tal:repeat="file context/files">
+  <td>
+   <a tal:attributes="href string:file${file/id}/${file/name}"
+      tal:content="file/name">dld link</a>
+  </td>
+  <td>
+   <span tal:content="file/creator">creator's name</span>,
+   <span tal:content="file/creation">creation date</span>
+  </td>
+ </tr>
+</table>
 
- <tal:block tal:replace="structure context/history" />
-
-</table>
+<tal:block tal:replace="structure context/history" />

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