|
|
@ -7,12 +7,15 @@
|
|
|
|
<p><strong><%=l(:label_related_issues)%></strong></p>
|
|
|
|
<p><strong><%=l(:label_related_issues)%></strong></p>
|
|
|
|
|
|
|
|
|
|
|
|
<% if @relations.present? %>
|
|
|
|
<% if @relations.present? %>
|
|
|
|
|
|
|
|
|
|
|
|
<form>
|
|
|
|
<form>
|
|
|
|
<table class="list issues">
|
|
|
|
<table class="list issues">
|
|
|
|
<% @relations.each do |relation| %>
|
|
|
|
<% @relations.each do |relation| %>
|
|
|
|
<% other_issue = relation.other_issue(@issue) -%>
|
|
|
|
<% other_issue = relation.other_issue(@issue) -%>
|
|
|
|
<tr class="issue hascontextmenu" id="relation-<%= relation.id %>">
|
|
|
|
<tr class="issue hascontextmenu" id="relation-<%= relation.id %>">
|
|
|
|
|
|
|
|
|
|
|
|
<td class="checkbox"><%= check_box_tag("ids[]", other_issue.id, false, :id => nil) %></td>
|
|
|
|
<td class="checkbox"><%= check_box_tag("ids[]", other_issue.id, false, :id => nil) %></td>
|
|
|
|
|
|
|
|
|
|
|
|
<td class="subject">
|
|
|
|
<td class="subject">
|
|
|
|
<%= l(relation.label_for(@issue)) %>
|
|
|
|
<%= l(relation.label_for(@issue)) %>
|
|
|
|
<%= "(#{l('datetime.distance_in_words.x_days', :count => relation.delay)})" if relation.delay && relation.delay != 0 %>
|
|
|
|
<%= "(#{l('datetime.distance_in_words.x_days', :count => relation.delay)})" if relation.delay && relation.delay != 0 %>
|
|
|
@ -21,7 +24,11 @@
|
|
|
|
</td>
|
|
|
|
</td>
|
|
|
|
<td class="status"><%=h other_issue.status.name %></td>
|
|
|
|
<td class="status"><%=h other_issue.status.name %></td>
|
|
|
|
<td class="start_date"><%= format_date(other_issue.start_date) %></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="due_date"><%= format_date(other_issue.due_date) %></td>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
<td class="buttons"><%= link_to image_tag('link_break.png'),
|
|
|
|
<td class="buttons"><%= link_to image_tag('link_break.png'),
|
|
|
|
relation_path(relation),
|
|
|
|
relation_path(relation),
|
|
|
|
:remote => true,
|
|
|
|
:remote => true,
|
|
|
|