_relations.html.erb
44 lines
| 1.9 KiB
| text/plain
|
TextLexer
|
r736 | <div class="contextual"> | ||
|
r5324 | <% if User.current.allowed_to?(:manage_issue_relations, @project) %> | ||
|
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| %> | ||
|
r10891 | <% other_issue = relation.other_issue(@issue) -%> | ||
|
r10839 | <tr class="issue hascontextmenu" id="relation-<%= relation.id %>"> | ||
|
r10891 | <td class="checkbox"><%= check_box_tag("ids[]", other_issue.id, false, :id => nil) %></td> | ||
|
r10839 | <td class="subject"> | ||
<%= l(relation.label_for(@issue)) %> | ||||
<%= "(#{l('datetime.distance_in_words.x_days', :count => relation.delay)})" if relation.delay && relation.delay != 0 %> | ||||
|
r10891 | <%= h(other_issue.project) + ' - ' if Setting.cross_project_issue_relations? %> | ||
<%= link_to_issue(other_issue, :truncate => 60) %> | ||||
|
r10839 | </td> | ||
|
r10891 | <td class="status"><%=h other_issue.status.name %></td> | ||
<td class="start_date"><%= format_date(other_issue.start_date) %></td> | ||||
<td class="due_date"><%= format_date(other_issue.due_date) %></td> | ||||
|
r10839 | <td class="buttons"><%= 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) %></td> | ||||
</tr> | ||||
|
r503 | <% end %> | ||
</table> | ||||
|
r5201 | </form> | ||
|
r736 | <% end %> | ||
|
r503 | |||
|
r9388 | <%= form_for @relation, { | ||
:as => :relation, :remote => true, | ||||
|
r10839 | :url => issue_relations_path(@issue), | ||
|
r736 | :method => :post, | ||
|
r11380 | :html => {:id => 'new-relation-form', :style => 'display: none;'} | ||
|
r9388 | } do |f| %> | ||
|
r736 | <%= render :partial => 'issue_relations/form', :locals => {:f => f}%> | ||
|
r503 | <% end %> | ||