Use GET instead of POST on roadmap (#718), gantt and calendar forms.
git-svn-id: http://redmine.rubyforge.org/svn/trunk@1388 e93f8b46-1217-0410-a6f0-8f06a7374b81
This commit is contained in:
parent
f1ae453688
commit
b2abe48592
|
@ -23,7 +23,7 @@
|
||||||
<% content_for :sidebar do %>
|
<% content_for :sidebar do %>
|
||||||
<h3><%= l(:label_calendar) %></h3>
|
<h3><%= l(:label_calendar) %></h3>
|
||||||
|
|
||||||
<% form_tag() do %>
|
<% form_tag({}, :method => :get) do %>
|
||||||
<p><%= select_month(@month, :prefix => "month", :discard_type => true) %>
|
<p><%= select_month(@month, :prefix => "month", :discard_type => true) %>
|
||||||
<%= select_year(@year, :prefix => "year", :discard_type => true) %></p>
|
<%= select_year(@year, :prefix => "year", :discard_type => true) %></p>
|
||||||
|
|
||||||
|
|
|
@ -235,7 +235,7 @@ if Date.today >= @date_from and Date.today <= @date_to %>
|
||||||
|
|
||||||
<% content_for :sidebar do %>
|
<% content_for :sidebar do %>
|
||||||
<h3><%= l(:label_gantt) %></h3>
|
<h3><%= l(:label_gantt) %></h3>
|
||||||
<% form_tag(params.merge(:tracker_ids => nil, :with_subprojects => nil)) do %>
|
<% form_tag(params.merge(:tracker_ids => nil, :with_subprojects => nil), :method => :get) do %>
|
||||||
<% @trackers.each do |tracker| %>
|
<% @trackers.each do |tracker| %>
|
||||||
<label><%= check_box_tag "tracker_ids[]", tracker.id, (@selected_tracker_ids.include? tracker.id.to_s) %> <%= tracker.name %></label><br />
|
<label><%= check_box_tag "tracker_ids[]", tracker.id, (@selected_tracker_ids.include? tracker.id.to_s) %> <%= tracker.name %></label><br />
|
||||||
<% end %>
|
<% end %>
|
||||||
|
@ -243,7 +243,7 @@ if Date.today >= @date_from and Date.today <= @date_to %>
|
||||||
<br /><label><%= check_box_tag 'with_subprojects', 1, @with_subprojects %> <%=l(:label_subproject_plural)%></label>
|
<br /><label><%= check_box_tag 'with_subprojects', 1, @with_subprojects %> <%=l(:label_subproject_plural)%></label>
|
||||||
<%= hidden_field_tag 'with_subprojects', 0 %>
|
<%= hidden_field_tag 'with_subprojects', 0 %>
|
||||||
<% end %>
|
<% end %>
|
||||||
<p><%= submit_tag l(:button_apply), :class => 'button-small' %></p>
|
<p><%= submit_tag l(:button_apply), :class => 'button-small', :name => nil %></p>
|
||||||
<% end %>
|
<% end %>
|
||||||
<% end %>
|
<% end %>
|
||||||
|
|
||||||
|
|
|
@ -30,7 +30,7 @@
|
||||||
<% end %>
|
<% end %>
|
||||||
|
|
||||||
<% content_for :sidebar do %>
|
<% content_for :sidebar do %>
|
||||||
<% form_tag do %>
|
<% form_tag({}, :method => :get) do %>
|
||||||
<h3><%= l(:label_roadmap) %></h3>
|
<h3><%= l(:label_roadmap) %></h3>
|
||||||
<% @trackers.each do |tracker| %>
|
<% @trackers.each do |tracker| %>
|
||||||
<label><%= check_box_tag "tracker_ids[]", tracker.id, (@selected_tracker_ids.include? tracker.id.to_s), :id => nil %>
|
<label><%= check_box_tag "tracker_ids[]", tracker.id, (@selected_tracker_ids.include? tracker.id.to_s), :id => nil %>
|
||||||
|
@ -38,7 +38,7 @@
|
||||||
<% end %>
|
<% end %>
|
||||||
<br />
|
<br />
|
||||||
<label for="completed"><%= check_box_tag "completed", 1, params[:completed] %> <%= l(:label_show_completed_versions) %></label>
|
<label for="completed"><%= check_box_tag "completed", 1, params[:completed] %> <%= l(:label_show_completed_versions) %></label>
|
||||||
<p><%= submit_tag l(:button_apply), :class => 'button-small' %></p>
|
<p><%= submit_tag l(:button_apply), :class => 'button-small', :name => nil %></p>
|
||||||
<% end %>
|
<% end %>
|
||||||
|
|
||||||
<h3><%= l(:label_version_plural) %></h3>
|
<h3><%= l(:label_version_plural) %></h3>
|
||||||
|
|
Loading…
Reference in New Issue