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| %>
|
2011-07-05 20:47:34 +04:00
|
|
|
<tr class="issue hascontextmenu" id="relation-<%= relation.id %>">
|
2011-04-05 16:11:05 +04:00
|
|
|
<td class="checkbox"><%= check_box_tag("ids[]", relation.other_issue(@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 %>
|
2009-11-14 15:53:50 +03:00
|
|
|
<%= h(relation.other_issue(@issue).project) + ' - ' if Setting.cross_project_issue_relations? %>
|
2010-03-13 18:47:06 +03:00
|
|
|
<%= link_to_issue(relation.other_issue(@issue), :truncate => 60) %>
|
2009-11-14 15:53:50 +03:00
|
|
|
</td>
|
2011-07-30 12:35:43 +04:00
|
|
|
<td class="status"><%=h relation.other_issue(@issue).status.name %></td>
|
2011-04-05 16:11:05 +04:00
|
|
|
<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>
|
2012-07-18 20:47:30 +04:00
|
|
|
<td class="buttons"><%= 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) %></td>
|
2007-05-05 17:22:27 +04:00
|
|
|
</tr>
|
|
|
|
<% 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,
|
2011-07-04 21:03:04 +04:00
|
|
|
:url => {:controller => 'issue_relations', :action => 'create', :issue_id => @issue},
|
2007-09-22 17:17:49 +04:00
|
|
|
:method => :post,
|
2012-04-29 06:43:42 +04:00
|
|
|
:html => {:id => 'new-relation-form', :style => (@relation ? '' : 'display: none;')}
|
|
|
|
} 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 %>
|