Mercurial > p > roundup > code
diff templates/classic/html/issue.search.html @ 3875:64a12bd91fc0
allow searching for issues with empty topics
[SF#610787] points out that the classic template doesn't allow a way
to search for issues that don't have a topic. Priority, status, and
assigned do, so I've remedied the oversight by adding a new option to
Topic.
This closes [SF#610787].
| author | Justus Pendleton <jpend@users.sourceforge.net> |
|---|---|
| date | Fri, 31 Aug 2007 17:51:59 +0000 |
| parents | 18def94e5150 |
| children | 91008ec8f9a0 |
line wrap: on
line diff
--- a/templates/classic/html/issue.search.html Fri Aug 31 17:45:17 2007 +0000 +++ b/templates/classic/html/issue.search.html Fri Aug 31 17:51:59 2007 +0000 @@ -54,7 +54,10 @@ db_klass string:keyword; db_content string:name;"> <th i18n:translate="">Topic:</th> - <td metal:use-macro="search_select"></td> + <td metal:use-macro="search_select"> + <option metal:fill-slot="extra_options" value="-1" i18n:translate="" + tal:attributes="selected python:value == '-1'">not selected</option> + </td> <td metal:use-macro="column_input"></td> <td metal:use-macro="sort_input"></td> <td metal:use-macro="group_input"></td>
