Roundup Tracker - Issues

Message3454

Author thomas_ah
Recipients
Date 2006-12-07.11:21:15
Message-id
In-reply-to
In an old roundup 0.6 installation I have modified the search template to allow searching not only for unresolved issues, but for some more combinations, too. The drop down box has the following entries:

don't care
not resolved
 & not done-dbb
   & not testing
     & not deferred
not selected
--------------
(followed by a list of all status values)

For 0.6 the modification of issue.search.html is:
     <tal:block metal:fill-slot="extra_options">
       <option value="-1,1,2,3,4,5,6,7"
               tal:attributes="selected python:value == '-1,1,2,3,4,5,6,7'">not resolved</option>
+      <option value="-1,1,2,3,4,5,6"
+              tal:attributes="selected python:value == '-1,1,2,3,4,5,6'"> & not done-cbb</option>
+      <option value="-1,1,2,3,4,5"
+              tal:attributes="selected python:value == '-1,1,2,3,4,5'">   & not testing</option>
+      <option value="-1,1,3,4,5"
+              tal:attributes="selected python:value == '-1,1,3,4,5'">     & not deferred</option>
       <option value="-1"
               tal:attributes="selected python:value == '-1'">not selected</option>
     </tal:block>    


Before I prepare a patch for current roundup, is it desired to have this in the standard classic template?
History
Date User Action Args
2009-02-03 14:24:06adminlinkissue1610724 messages
2009-02-03 14:24:06admincreate