_relations.rhtml
37 lines
| 2.0 KiB
| text/html+ruby
|
RhtmlLexer
|
r736 | <div class="contextual"> | ||
<% if authorize_for('issue_relations', 'new') %> | ||||
|
r3801 | <%= toggle_link l(:button_add), 'new-relation-form', {:focus => 'relation_issue_to_id'} %> | ||
|
r736 | <% end %> | ||
</div> | ||||
<p><strong><%=l(:label_related_issues)%></strong></p> | ||||
|
r503 | |||
|
r4621 | <% if @relations.present? %> | ||
|
r5201 | <form> | ||
<table class="list issues"> | ||||
|
r4621 | <% @relations.each do |relation| %> | ||
|
r5201 | <tr class="issue hascontextmenu"> | ||
<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 %> | ||||
|
r2926 | <%= h(relation.other_issue(@issue).project) + ' - ' if Setting.cross_project_issue_relations? %> | ||
|
r3463 | <%= link_to_issue(relation.other_issue(@issue), :truncate => 60) %> | ||
|
r2926 | </td> | ||
|
r5201 | <td class="status"><%= relation.other_issue(@issue).status.name %></td> | ||
<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> | ||||
<td class="buttons"><%= link_to_remote(image_tag('delete.png'), { :url => {:controller => 'issue_relations', :action => 'destroy', :issue_id => @issue, :id => relation}, | ||||
|
r503 | :method => :post | ||
|
r611 | }, :title => l(:label_relation_delete)) if authorize_for('issue_relations', 'destroy') %></td> | ||
|
r503 | </tr> | ||
<% end %> | ||||
</table> | ||||
|
r5201 | </form> | ||
|
r736 | <% end %> | ||
|
r503 | |||
|
r736 | <% remote_form_for(:relation, @relation, | ||
:url => {:controller => 'issue_relations', :action => 'new', :issue_id => @issue}, | ||||
:method => :post, | ||||
|
r3951 | :complete => "Form.Element.focus('relation_issue_to_id');", | ||
|
r736 | :html => {:id => 'new-relation-form', :style => (@relation ? '' : 'display: none;')}) do |f| %> | ||
<%= render :partial => 'issue_relations/form', :locals => {:f => f}%> | ||||
|
r503 | <% end %> | ||