From 6c15812d96165d884a47342b007449bcdaca63f5 Mon Sep 17 00:00:00 2001 From: Jean-Philippe Lang Date: Sat, 22 Dec 2012 10:40:32 +0000 Subject: [PATCH] Code cleanup, use named routes. git-svn-id: svn+ssh://rubyforge.org/var/svn/redmine/trunk@11069 e93f8b46-1217-0410-a6f0-8f06a7374b81 --- app/views/issues/_relations.html.erb | 32 +++++++++++++++------------- 1 file changed, 17 insertions(+), 15 deletions(-) diff --git a/app/views/issues/_relations.html.erb b/app/views/issues/_relations.html.erb index cb7e0e15e..108c9bbf1 100644 --- a/app/views/issues/_relations.html.erb +++ b/app/views/issues/_relations.html.erb @@ -10,22 +10,24 @@
<% @relations.each do |relation| %> - - - + + - - - - - + + + + + + <% end %>
<%= check_box_tag("ids[]", relation.other_issue(@issue).id, false, :id => nil) %><%= l(relation.label_for(@issue)) %> <%= "(#{l('datetime.distance_in_words.x_days', :count => relation.delay)})" if relation.delay && relation.delay != 0 %> +
<%= check_box_tag("ids[]", relation.other_issue(@issue).id, false, :id => nil) %> + <%= l(relation.label_for(@issue)) %> + <%= "(#{l('datetime.distance_in_words.x_days', :count => relation.delay)})" if relation.delay && relation.delay != 0 %> <%= h(relation.other_issue(@issue).project) + ' - ' if Setting.cross_project_issue_relations? %> <%= link_to_issue(relation.other_issue(@issue), :truncate => 60) %> -<%=h relation.other_issue(@issue).status.name %><%= format_date(relation.other_issue(@issue).start_date) %><%= format_date(relation.other_issue(@issue).due_date) %><%= link_to image_tag('link_break.png'), - {:controller => 'issue_relations', :action => 'destroy', :id => relation}, - :remote => true, - :method => :delete, - :data => {:confirm => l(:text_are_you_sure)}, - :title => l(:label_relation_delete) if User.current.allowed_to?(:manage_issue_relations, @project) %>
<%=h relation.other_issue(@issue).status.name %><%= format_date(relation.other_issue(@issue).start_date) %><%= format_date(relation.other_issue(@issue).due_date) %><%= link_to image_tag('link_break.png'), + relation_path(relation), + :remote => true, + :method => :delete, + :data => {:confirm => l(:text_are_you_sure)}, + :title => l(:label_relation_delete) if User.current.allowed_to?(:manage_issue_relations, @project) %>
@@ -33,7 +35,7 @@ <%= form_for @relation, { :as => :relation, :remote => true, - :url => {:controller => 'issue_relations', :action => 'create', :issue_id => @issue}, + :url => issue_relations_path(@issue), :method => :post, :html => {:id => 'new-relation-form', :style => (@relation ? '' : 'display: none;')} } do |f| %>