<% if User.current.allowed_to?(:manage_issue_relations, @project) %> <%= toggle_link l(:button_add), 'new-relation-form', {:focus => 'relation_issue_to_id'} %> <% end %>

<%=l(:label_related_issues)%>

<% if @relations.present? %>
<% @relations.each do |relation| %> <% other_issue = relation.other_issue(@issue) -%> <% end %>
<%= check_box_tag("ids[]", other_issue.id, false, :id => nil) %> <%= relation.to_s(@issue) {|other| link_to_issue(other, :project => Setting.cross_project_issue_relations?)}.html_safe %> <%= other_issue.status.name %> <%= format_date(other_issue.start_date) %> <%= format_date(other_issue.due_date) %> <%= 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) %>
<% end %> <%= form_for @relation, { :as => :relation, :remote => true, :url => issue_relations_path(@issue), :method => :post, :html => {:id => 'new-relation-form', :style => 'display: none;'} } do |f| %> <%= render :partial => 'issue_relations/form', :locals => {:f => f}%> <% end %>