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

martin.v.loewis python-checkins at python.org
Mon Dec 31 14:27:08 CET 2007


Author: martin.v.loewis
Date: Mon Dec 31 14:27:08 2007
New Revision: 59619

Modified:
   tracker/instances/python-dev/html/issue.item.html
Log:
Sort files by creation date. Fixes #171.


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 Dec 31 14:27:08 2007
@@ -201,7 +201,7 @@
   <th i18n:translate="">Edit</th>
   <th i18n:translate="">Remove</th>
  </tr>
- <tr tal:repeat="file context/files">
+ <tr tal:repeat="file python:context.files.sorted('creation')">
   <td>
    <a tal:attributes="href file/download_url"
       tal:content="file/name">dld link</a>


More information about the Python-checkins mailing list