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

martin.v.loewis python-checkins at python.org
Mon May 19 22:35:16 CEST 2008


Author: martin.v.loewis
Date: Mon May 19 22:35:16 2008
New Revision: 63472

Log:
Issue206: Sort dependencies by creation.


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 May 19 22:35:16 2008
@@ -100,7 +100,7 @@
  </th>
  <td>
   <span tal:replace="structure python:context.dependencies.field(showid=1,size=20)" />
-  <span tal:condition="context/dependencies" tal:repeat="d context/dependencies">
+  <span tal:condition="context/dependencies" tal:repeat="d python:context.dependencies.sorted('creation')">
    <br/>View: <a tal:attributes="href string:issue${d/id}" tal:content="d/id"></a>
   </span>
  </td>


More information about the Python-checkins mailing list