<%=l(:label_related_issues)%>

<% @issue.relations.each do |relation| %> <% end %>
<%= l(relation.label_for(@issue)) %> <%= "(#{lwr(:actionview_datehelper_time_in_words_day, relation.delay)})" if relation.delay && relation.delay != 0 %> <%= link_to_issue relation.other_issue(@issue) %> <%=h relation.other_issue(@issue).subject %>
<%= relation.other_issue(@issue).status.name %>
<%= format_date(relation.other_issue(@issue).start_date) %> <%= format_date(relation.other_issue(@issue).due_date) %> <%= link_to_remote image_tag('delete.png'), { :url => {:controller => 'issue_relations', :action => 'destroy', :issue_id => @issue, :id => relation}, :method => :post }, :title => l(:label_relation_delete) %>
<% if authorize_for('issue_relations', 'new') %>  <% remote_form_for(:relation, @relation, :url => {:controller => 'issue_relations', :action => 'new', :issue_id => @issue}, :method => :post) do |f| %> <%= render :partial => 'issue_relations/form', :locals => {:f => f}%> <% end %> <% end %>