mirror of
https://github.com/redmine/redmine.git
synced 2026-07-10 15:33:17 +02:00
Add id to query create and edit form to ease theme (#22277).
Patch by Gregor Schmidt. git-svn-id: http://svn.redmine.org/redmine/trunk@15261 e93f8b46-1217-0410-a6f0-8f06a7374b81
This commit is contained in:
@@ -1,6 +1,6 @@
|
||||
<h2><%= l(:label_query) %></h2>
|
||||
|
||||
<%= form_tag(query_path(@query), :method => :put) do %>
|
||||
<%= form_tag(query_path(@query), :method => :put, :id => "query-form") do %>
|
||||
<%= render :partial => 'form', :locals => {:query => @query} %>
|
||||
<%= submit_tag l(:button_save) %>
|
||||
<% end %>
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
<h2><%= l(:label_query_new) %></h2>
|
||||
|
||||
<%= form_tag(@project ? project_queries_path(@project) : queries_path) do %>
|
||||
<%= form_tag(@project ? project_queries_path(@project) : queries_path, :id => "query-form") do %>
|
||||
<%= render :partial => 'form', :locals => {:query => @query} %>
|
||||
<%= submit_tag l(:button_save) %>
|
||||
<% end %>
|
||||
|
||||
Reference in New Issue
Block a user