##// END OF EJS Templates
Fixed: Contextual divs after attachments are placed incorrectly in FireFox (#2633)....
Fixed: Contextual divs after attachments are placed incorrectly in FireFox (#2633). git-svn-id: svn+ssh://rubyforge.org/var/svn/redmine/trunk@2345 e93f8b46-1217-0410-a6f0-8f06a7374b81

File last commit:

r1296:287d86e36325
r2343:c83b41611a3a
Show More
_form.rhtml
29 lines | 1.4 KiB | text/html+ruby | RhtmlLexer
Jean-Philippe Lang
"queries" branch merged...
r92 <%= error_messages_for 'query' %>
Jean-Philippe Lang
Fixed: can't select columns when creating a new query....
r784 <%= hidden_field_tag 'confirm', 1 %>
Jean-Philippe Lang
"queries" branch merged...
r92
<div class="box">
<div class="tabular">
<p><label for="query_name"><%=l(:field_name)%></label>
<%= text_field 'query', 'name', :size => 80 %></p>
Jean-Philippe Lang
Added per user custom queries....
r563
Jean-Philippe Lang
Queries can be marked as 'For all projects'. Such queries will be available on all projects and on the global issue list (#897, closes #671)....
r1296 <% if User.current.admin? || (@project && current_role.allowed_to?(:manage_public_queries)) %>
<p><label for="query_is_public"><%=l(:field_is_public)%></label>
<%= check_box 'query', 'is_public',
:onchange => (User.current.admin? ? nil : 'if (this.checked) {$("query_is_for_all").checked = false; $("query_is_for_all").disabled = true;} else {$("query_is_for_all").disabled = false;}') %></p>
Jean-Philippe Lang
Added per user custom queries....
r563 <% end %>
Jean-Philippe Lang
Added the ability to customize columns of a saved query....
r771
Jean-Philippe Lang
Queries can be marked as 'For all projects'. Such queries will be available on all projects and on the global issue list (#897, closes #671)....
r1296 <p><label for="query_is_for_all"><%=l(:field_is_for_all)%></label>
<%= check_box_tag 'query_is_for_all', 1, @query.project.nil?,
:disabled => (!@query.new_record? && (@query.project.nil? || (@query.is_public? && !User.current.admin?))) %></p>
Jean-Philippe Lang
Added a checkbox on custom query form to explicitly say if the query uses default columns or not....
r772 <p><label for="query_default_columns"><%=l(:label_default_columns)%></label>
<%= check_box_tag 'default_columns', 1, @query.has_default_columns?, :id => 'query_default_columns',
Jean-Philippe Lang
Custom query columns: checkboxes replaced by two selects that let the user specify columns order....
r773 :onclick => 'if (this.checked) {Element.hide("columns")} else {Element.show("columns")}' %></p>
Jean-Philippe Lang
"queries" branch merged...
r92 </div>
Jean-Philippe Lang
Move the filters buttons inside the filters fieldset on the issue list (closes #614)....
r1247 <fieldset><legend><%= l(:label_filter_plural) %></legend>
Jean-Philippe Lang
"queries" branch merged...
r92 <%= render :partial => 'queries/filters', :locals => {:query => query}%>
Jean-Philippe Lang
Move the filters buttons inside the filters fieldset on the issue list (closes #614)....
r1247 </fieldset>
Jean-Philippe Lang
Custom query columns: checkboxes replaced by two selects that let the user specify columns order....
r773 <%= render :partial => 'queries/columns', :locals => {:query => query}%>
Jean-Philippe Lang
"queries" branch merged...
r92 </div>