##// END OF EJS Templates
Store the other issue in a variable (#10916)....
Jean-Philippe Lang -
r10891:d56f916a0e10
parent child
Show More
@@ -1,43 +1,44
1 <div class="contextual">
1 <div class="contextual">
2 <% if User.current.allowed_to?(:manage_issue_relations, @project) %>
2 <% if User.current.allowed_to?(:manage_issue_relations, @project) %>
3 <%= toggle_link l(:button_add), 'new-relation-form', {:focus => 'relation_issue_to_id'} %>
3 <%= toggle_link l(:button_add), 'new-relation-form', {:focus => 'relation_issue_to_id'} %>
4 <% end %>
4 <% end %>
5 </div>
5 </div>
6
6
7 <p><strong><%=l(:label_related_issues)%></strong></p>
7 <p><strong><%=l(:label_related_issues)%></strong></p>
8
8
9 <% if @relations.present? %>
9 <% if @relations.present? %>
10 <form>
10 <form>
11 <table class="list issues">
11 <table class="list issues">
12 <% @relations.each do |relation| %>
12 <% @relations.each do |relation| %>
13 <% other_issue = relation.other_issue(@issue) -%>
13 <tr class="issue hascontextmenu" id="relation-<%= relation.id %>">
14 <tr class="issue hascontextmenu" id="relation-<%= relation.id %>">
14 <td class="checkbox"><%= check_box_tag("ids[]", relation.other_issue(@issue).id, false, :id => nil) %></td>
15 <td class="checkbox"><%= check_box_tag("ids[]", other_issue.id, false, :id => nil) %></td>
15 <td class="subject">
16 <td class="subject">
16 <%= l(relation.label_for(@issue)) %>
17 <%= l(relation.label_for(@issue)) %>
17 <%= "(#{l('datetime.distance_in_words.x_days', :count => relation.delay)})" if relation.delay && relation.delay != 0 %>
18 <%= "(#{l('datetime.distance_in_words.x_days', :count => relation.delay)})" if relation.delay && relation.delay != 0 %>
18 <%= h(relation.other_issue(@issue).project) + ' - ' if Setting.cross_project_issue_relations? %>
19 <%= h(other_issue.project) + ' - ' if Setting.cross_project_issue_relations? %>
19 <%= link_to_issue(relation.other_issue(@issue), :truncate => 60) %>
20 <%= link_to_issue(other_issue, :truncate => 60) %>
20 </td>
21 </td>
21 <td class="status"><%=h relation.other_issue(@issue).status.name %></td>
22 <td class="status"><%=h other_issue.status.name %></td>
22 <td class="start_date"><%= format_date(relation.other_issue(@issue).start_date) %></td>
23 <td class="start_date"><%= format_date(other_issue.start_date) %></td>
23 <td class="due_date"><%= format_date(relation.other_issue(@issue).due_date) %></td>
24 <td class="due_date"><%= format_date(other_issue.due_date) %></td>
24 <td class="buttons"><%= link_to image_tag('link_break.png'),
25 <td class="buttons"><%= link_to image_tag('link_break.png'),
25 relation_path(relation),
26 relation_path(relation),
26 :remote => true,
27 :remote => true,
27 :method => :delete,
28 :method => :delete,
28 :data => {:confirm => l(:text_are_you_sure)},
29 :data => {:confirm => l(:text_are_you_sure)},
29 :title => l(:label_relation_delete) if User.current.allowed_to?(:manage_issue_relations, @project) %></td>
30 :title => l(:label_relation_delete) if User.current.allowed_to?(:manage_issue_relations, @project) %></td>
30 </tr>
31 </tr>
31 <% end %>
32 <% end %>
32 </table>
33 </table>
33 </form>
34 </form>
34 <% end %>
35 <% end %>
35
36
36 <%= form_for @relation, {
37 <%= form_for @relation, {
37 :as => :relation, :remote => true,
38 :as => :relation, :remote => true,
38 :url => issue_relations_path(@issue),
39 :url => issue_relations_path(@issue),
39 :method => :post,
40 :method => :post,
40 :html => {:id => 'new-relation-form', :style => (@relation ? '' : 'display: none;')}
41 :html => {:id => 'new-relation-form', :style => (@relation ? '' : 'display: none;')}
41 } do |f| %>
42 } do |f| %>
42 <%= render :partial => 'issue_relations/form', :locals => {:f => f}%>
43 <%= render :partial => 'issue_relations/form', :locals => {:f => f}%>
43 <% end %>
44 <% end %>
General Comments 0
You need to be logged in to leave comments. Login now