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

erik.forsberg python-checkins at python.org
Thu Jan 18 20:01:28 CET 2007


Author: erik.forsberg
Date: Thu Jan 18 20:01:28 2007
New Revision: 53485

Modified:
   tracker/instances/python-dev/html/issue.item.html
Log:
Order list of developers by name. Resolves
http://psf.upfronthosting.co.za/roundup/meta/issue77.


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	Thu Jan 18 20:01:28 2007
@@ -117,7 +117,7 @@
  <td tal:condition="context/status/is_edit_ok">
   <select name="assignee">
    <option value="-1">nobody</option>
-   <tal:block tal:repeat="userdata python:db._db.user.filter_sql('select id,_username from _user where _roles like \'%Developer%\'')">
+   <tal:block tal:repeat="userdata python:db._db.user.filter_sql('select id,_username from _user where _roles like \'%Developer%\' order by _username')">
     <option tal:attributes="value python:userdata[0]; 
                             selected python:str(userdata[0]) == context.assignee._value"
             tal:content="python:userdata[1]"></option>


More information about the Python-checkins mailing list