##// END OF EJS Templates
Add id to query create and edit form to ease theme (#22277)....
Jean-Philippe Lang -
r14879:06dec37f499a
parent child
Show More
@@ -1,6 +1,6
1 1 <h2><%= l(:label_query) %></h2>
2 2
3 <%= form_tag(query_path(@query), :method => :put) do %>
3 <%= form_tag(query_path(@query), :method => :put, :id => "query-form") do %>
4 4 <%= render :partial => 'form', :locals => {:query => @query} %>
5 5 <%= submit_tag l(:button_save) %>
6 6 <% end %>
@@ -1,6 +1,6
1 1 <h2><%= l(:label_query_new) %></h2>
2 2
3 <%= form_tag(@project ? project_queries_path(@project) : queries_path) do %>
3 <%= form_tag(@project ? project_queries_path(@project) : queries_path, :id => "query-form") do %>
4 4 <%= render :partial => 'form', :locals => {:query => @query} %>
5 5 <%= submit_tag l(:button_save) %>
6 6 <% end %>
General Comments 0
You need to be logged in to leave comments. Login now