2007-09-22 17:17:49 +04:00
|
|
|
<div class="contextual">
|
|
|
|
<% if authorize_for('issue_relations', 'new') %>
|
|
|
|
<%= toggle_link l(:button_add), 'new-relation-form'%>
|
|
|
|
<% end %>
|
|
|
|
</div>
|
|
|
|
|
|
|
|
<p><strong><%=l(:label_related_issues)%></strong></p>
|
2007-05-05 17:22:27 +04:00
|
|
|
|
2007-09-22 17:17:49 +04:00
|
|
|
<% if @issue.relations.any? %>
|
2007-05-05 17:22:27 +04:00
|
|
|
<table style="width:100%">
|
|
|
|
<% @issue.relations.each do |relation| %>
|
|
|
|
<tr>
|
|
|
|
<td><%= 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) %></td>
|
|
|
|
<td><%=h relation.other_issue(@issue).subject %></td>
|
2007-09-22 17:17:49 +04:00
|
|
|
<td><%= relation.other_issue(@issue).status.name %></td>
|
2007-05-05 17:22:27 +04:00
|
|
|
<td><%= format_date(relation.other_issue(@issue).start_date) %></td>
|
|
|
|
<td><%= format_date(relation.other_issue(@issue).due_date) %></td>
|
2007-08-12 18:22:02 +04:00
|
|
|
<td><%= link_to_remote(image_tag('delete.png'), { :url => {:controller => 'issue_relations', :action => 'destroy', :issue_id => @issue, :id => relation},
|
2007-05-05 17:22:27 +04:00
|
|
|
:method => :post
|
2007-08-12 18:22:02 +04:00
|
|
|
}, :title => l(:label_relation_delete)) if authorize_for('issue_relations', 'destroy') %></td>
|
2007-05-05 17:22:27 +04:00
|
|
|
</tr>
|
|
|
|
<% end %>
|
|
|
|
</table>
|
2007-09-22 17:17:49 +04:00
|
|
|
<% end %>
|
2007-05-05 17:22:27 +04:00
|
|
|
|
2007-09-22 17:17:49 +04:00
|
|
|
<% remote_form_for(:relation, @relation,
|
|
|
|
:url => {:controller => 'issue_relations', :action => 'new', :issue_id => @issue},
|
|
|
|
:method => :post,
|
|
|
|
:html => {:id => 'new-relation-form', :style => (@relation ? '' : 'display: none;')}) do |f| %>
|
|
|
|
<%= render :partial => 'issue_relations/form', :locals => {:f => f}%>
|
2007-05-05 17:22:27 +04:00
|
|
|
<% end %>
|