Redmine 4.1.1
This commit is contained in:
parent
33e7b881a5
commit
3d976f1b3b
1593 changed files with 36180 additions and 19489 deletions
|
@ -3,7 +3,11 @@
|
|||
<%= form_tag({}, :method => :get, :id => 'search-form') do %>
|
||||
<div class="box">
|
||||
<%= label_tag "search-input", l(:description_search), :class => "hidden-for-sighted" %>
|
||||
<p><%= text_field_tag 'q', @question, :size => 60, :id => 'search-input' %>
|
||||
<p><%= text_field_tag 'q', @question, :size => 60, :id => 'search-input',
|
||||
:data => {
|
||||
:auto_complete => true,
|
||||
:issues_url => auto_complete_issues_path(:q => '')
|
||||
} %>
|
||||
<%= project_select_tag %>
|
||||
<%= hidden_field_tag 'all_words', '', :id => nil %>
|
||||
<label><%= check_box_tag 'all_words', 1, @all_words %> <%= l(:label_all_words) %></label>
|
||||
|
@ -11,14 +15,17 @@
|
|||
<label><%= check_box_tag 'titles_only', 1, @titles_only %> <%= l(:label_search_titles_only) %></label>
|
||||
</p>
|
||||
|
||||
<p id="search-types">
|
||||
<% @object_types.each do |t| %>
|
||||
<label><%= check_box_tag t, 1, @scope.include?(t) %> <%= link_to type_label(t), "#" %></label>
|
||||
<% end %>
|
||||
</p>
|
||||
<fieldset class="box">
|
||||
<legend><%= toggle_checkboxes_link('p#search-types input') %></legend>
|
||||
<p id="search-types">
|
||||
<% @object_types.each do |t| %>
|
||||
<label><%= check_box_tag t, 1, @scope.include?(t) %> <%= link_to type_label(t), "#" %></label>
|
||||
<% end %>
|
||||
</p>
|
||||
</fieldset>
|
||||
|
||||
<fieldset class="collapsible collapsed">
|
||||
<legend onclick="toggleFieldset(this);"><%= l(:label_options) %></legend>
|
||||
<legend onclick="toggleFieldset(this);" class="icon icon-collapsed"><%= 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>
|
||||
|
@ -32,7 +39,7 @@
|
|||
<%= hidden_field_tag 'options', '', :id => 'show-options' %>
|
||||
|
||||
</div>
|
||||
<p><%= submit_tag l(:button_submit) %></p>
|
||||
<p><%= submit_tag l(:label_search) %></p>
|
||||
<% end %>
|
||||
|
||||
<% if @results %>
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue