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

martin.v.loewis python-checkins at python.org
Wed Mar 11 20:43:05 CET 2009


Author: martin.v.loewis
Date: Wed Mar 11 20:43:05 2009
New Revision: 70313

Log:
Sort issues 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	Wed Mar 11 20:43:05 2009
@@ -227,7 +227,7 @@
 
 <table class="messages" tal:condition="context/messages">
  <tr><th colspan="4" class="header" i18n:translate="">Messages</th></tr>
- <tal:block tal:repeat="msg context/messages">
+ <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>


More information about the Python-checkins mailing list