diff options
author | Jean-Philippe Lang <jp_lang@yahoo.fr> | 2015-01-10 10:09:34 +0000 |
---|---|---|
committer | Jean-Philippe Lang <jp_lang@yahoo.fr> | 2015-01-10 10:09:34 +0000 |
commit | 0ed895388b89c1092f88da7c501587b70c4e899e (patch) | |
tree | 7e9537ecc7af04355e6e7dc256a892edef75352d /app/views/search | |
parent | 6e94d2f2af616dd3180c1b4eebe35b467198bb2d (diff) | |
download | redmine-0ed895388b89c1092f88da7c501587b70c4e899e.tar.gz redmine-0ed895388b89c1092f88da7c501587b70c4e899e.zip |
Option to search open issues only (#10734).
git-svn-id: http://svn.redmine.org/redmine/trunk@13858 e93f8b46-1217-0410-a6f0-8f06a7374b81
Diffstat (limited to 'app/views/search')
-rw-r--r-- | app/views/search/index.html.erb | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/app/views/search/index.html.erb b/app/views/search/index.html.erb index aaf08d369..935abf5a2 100644 --- a/app/views/search/index.html.erb +++ b/app/views/search/index.html.erb @@ -20,6 +20,7 @@ <fieldset class="collapsible collapsed"> <legend onclick="toggleFieldset(this);"><%= l(:label_options) %></legend> <div id="options-content" style="display:none;"> + <p><label><%= check_box_tag 'open_issues', 1, @open_issues %> <%= l(:label_search_open_issues_only) %></label></p> <p> <label><%= radio_button_tag 'attachments', '0', @search_attachments == '0' %> <%= l(:label_search_attachments_no) %></label> <label><%= radio_button_tag 'attachments', '1', @search_attachments == '1' %> <%= l(:label_search_attachments_yes) %></label> |