2007-09-22 17:17:49 +04:00
|
|
|
<div class="contextual">
|
2011-04-12 23:37:56 +04:00
|
|
|
<% if User.current.allowed_to?(:manage_issue_relations, @project) %>
|
2010-08-05 00:52:31 +04:00
|
|
|
<%= toggle_link l(:button_add), 'new-relation-form', {:focus => 'relation_issue_to_id'} %>
|
2007-09-22 17:17:49 +04:00
|
|
|
<% end %>
|
|
|
|
</div>
|
|
|
|
|
|
|
|
<p><strong><%=l(:label_related_issues)%></strong></p>
|
2007-05-05 17:22:27 +04:00
|
|
|
|
2011-01-22 16:28:20 +03:00
|
|
|
<% if @relations.present? %>
|
2011-04-05 16:11:05 +04:00
|
|
|
<form>
|
|
|
|
<table class="list issues">
|
2011-01-22 16:28:20 +03:00
|
|
|
<% @relations.each do |relation| %>
|
2013-01-05 17:23:33 +04:00
|
|
|
<% other_issue = relation.other_issue(@issue) -%>
|
2012-12-22 14:40:32 +04:00
|
|
|
<tr class="issue hascontextmenu" id="relation-<%= relation.id %>">
|
2013-01-05 17:23:33 +04:00
|
|
|
<td class="checkbox"><%= check_box_tag("ids[]", other_issue.id, false, :id => nil) %></td>
|
2012-12-22 14:40:32 +04:00
|
|
|
<td class="subject">
|
|
|
|
<%= l(relation.label_for(@issue)) %>
|
|
|
|
<%= "(#{l('datetime.distance_in_words.x_days', :count => relation.delay)})" if relation.delay && relation.delay != 0 %>
|
2013-01-05 17:23:33 +04:00
|
|
|
<%= h(other_issue.project) + ' - ' if Setting.cross_project_issue_relations? %>
|
|
|
|
<%= link_to_issue(other_issue, :truncate => 60) %>
|
2012-12-22 14:40:32 +04:00
|
|
|
</td>
|
2013-01-05 17:23:33 +04:00
|
|
|
<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>
|
2012-12-22 14:40:32 +04:00
|
|
|
<td class="buttons"><%= 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) %></td>
|
|
|
|
</tr>
|
2007-05-05 17:22:27 +04:00
|
|
|
<% end %>
|
|
|
|
</table>
|
2011-04-05 16:11:05 +04:00
|
|
|
</form>
|
2007-09-22 17:17:49 +04:00
|
|
|
<% end %>
|
2007-05-05 17:22:27 +04:00
|
|
|
|
2012-04-29 06:43:42 +04:00
|
|
|
<%= form_for @relation, {
|
|
|
|
:as => :relation, :remote => true,
|
2012-12-22 14:40:32 +04:00
|
|
|
:url => issue_relations_path(@issue),
|
2007-09-22 17:17:49 +04:00
|
|
|
:method => :post,
|
2013-03-12 22:35:59 +04:00
|
|
|
:html => {:id => 'new-relation-form', :style => 'display: none;'}
|
2012-04-29 06:43:42 +04:00
|
|
|
} do |f| %>
|
2007-09-22 17:17:49 +04:00
|
|
|
<%= render :partial => 'issue_relations/form', :locals => {:f => f}%>
|
2007-05-05 17:22:27 +04:00
|
|
|
<% end %>
|