[Python-checkins] r60386 - tracker/instances/python-dev/html/msg.index.html

martin.v.loewis python-checkins at python.org
Mon Jan 28 09:32:03 CET 2008


Author: martin.v.loewis
Date: Mon Jan 28 09:32:02 2008
New Revision: 60386

Modified:
   tracker/instances/python-dev/html/msg.index.html
Log:
Add msgid and link to message into index.


Modified: tracker/instances/python-dev/html/msg.index.html
==============================================================================
--- tracker/instances/python-dev/html/msg.index.html	(original)
+++ tracker/instances/python-dev/html/msg.index.html	Mon Jan 28 09:32:02 2008
@@ -6,14 +6,15 @@
  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>
+ <tr><th colspan=3 class="header" i18n:translate="">Messages</th></tr>
  <tal:block tal:repeat="msg batch">
   <tr>
+   <th><a tal:attributes="href string:msg${msg/id}"><tal:x replace="msg/id"/></a></th>
    <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>
+   <td colspan="3"><pre tal:content="msg/content">content</pre></td>
   </tr>
  </tal:block>
 


More information about the Python-checkins mailing list