]> source.dussan.org Git - redmine.git/commitdiff
Store the other issue in a variable (#10916).
authorJean-Philippe Lang <jp_lang@yahoo.fr>
Sat, 5 Jan 2013 13:23:33 +0000 (13:23 +0000)
committerJean-Philippe Lang <jp_lang@yahoo.fr>
Sat, 5 Jan 2013 13:23:33 +0000 (13:23 +0000)
git-svn-id: svn+ssh://rubyforge.org/var/svn/redmine/trunk@11121 e93f8b46-1217-0410-a6f0-8f06a7374b81

app/views/issues/_relations.html.erb

index 108c9bbf1f6b95629ecb78f52821e93e32a24a9d..0cffa8f534bb6e48d2bf7ea0acf20f0f23e45cf8 100644 (file)
 <form>
 <table class="list issues">
 <% @relations.each do |relation| %>
+  <% other_issue = relation.other_issue(@issue) -%>
   <tr class="issue hascontextmenu" id="relation-<%= relation.id %>">
-  <td class="checkbox"><%= check_box_tag("ids[]", relation.other_issue(@issue).id, false, :id => nil) %></td>
+  <td class="checkbox"><%= check_box_tag("ids[]", other_issue.id, false, :id => nil) %></td>
   <td class="subject">
     <%= 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(other_issue.project) + ' - ' if Setting.cross_project_issue_relations? %>
+    <%= link_to_issue(other_issue, :truncate => 60) %>
   </td>
-  <td class="status"><%=h relation.other_issue(@issue).status.name %></td>
-  <td class="start_date"><%= format_date(relation.other_issue(@issue).start_date) %></td>
-  <td class="due_date"><%= format_date(relation.other_issue(@issue).due_date) %></td>
+  <td class="status"><%=h other_issue.status.name %></td>
+  <td class="start_date"><%= format_date(other_issue.start_date) %></td>
+  <td class="due_date"><%= format_date(other_issue.due_date) %></td>
   <td class="buttons"><%= link_to image_tag('link_break.png'),
                                   relation_path(relation),
                                   :remote => true,