[Python-checkins] r71997 - tracker/instances/python-dev/html/issue.item.html

martin.v.loewis python-checkins at python.org
Mon Apr 27 07:16:01 CEST 2009


Author: martin.v.loewis
Date: Mon Apr 27 07:16:01 2009
New Revision: 71997

Log:
Issue #271: add permalinks for the messages.


Modified:
   tracker/instances/python-dev/html/issue.item.html

Modified: tracker/instances/python-dev/html/issue.item.html
==============================================================================
--- tracker/instances/python-dev/html/issue.item.html	(original)
+++ tracker/instances/python-dev/html/issue.item.html	Mon Apr 27 07:16:01 2009
@@ -232,8 +232,9 @@
          >Messages</th></tr>
  <tal:block tal:repeat="msg python:context.messages.sorted('creation')">
   <tr>
-   <th><a tal:attributes="href string:msg${msg/id}"
-    i18n:translate="">msg<tal:x replace="msg/id" i18n:name="id" /> (view)</a></th>
+    <th tal:define="mid string:msg${msg/id}">
+     <a tal:content="mid" tal:attributes="id mid; 
+        href string:#$mid;"></a> - <a tal:attributes="href mid">(view)</a></th>
    <th i18n:translate="">Author: <tal:x replace="python:msg.author.realname.plain(unchecked=1)"
        i18n:name="author" /> (<tal:x replace="msg/author"/>)</th>
    <th i18n:translate="">Date: <tal:x replace="python:msg.date.pretty('%Y-%m-%d %H:%M')"


More information about the Python-checkins mailing list