##// END OF EJS Templates
Do not run Mercurial functional tests if the test repository is not set up....
Do not run Mercurial functional tests if the test repository is not set up. git-svn-id: http://redmine.rubyforge.org/svn/trunk@1019 e93f8b46-1217-0410-a6f0-8f06a7374b81

File last commit:

r784:cb8bee3a4e5a
r1006:3d5381b24bb4
Show More
_form.rhtml
21 lines | 840 B | 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
Fixed: Manage pu(b)lic queries typo (Thomas Lecavelier)....
r767 <% if current_role.allowed_to?(:manage_public_queries) %>
Jean-Philippe Lang
Added per user custom queries....
r563 <p><label for="query_is_public"><%=l(:field_is_public)%></label>
<%= check_box 'query', 'is_public' %></p>
<% end %>
Jean-Philippe Lang
Added the ability to customize columns of a saved query....
r771
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>
<%= render :partial => 'queries/filters', :locals => {:query => query}%>
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>