##// END OF EJS Templates
Removes a call to link_to_remote....
Jean-Philippe Lang -
r9845:6f3c339e5e41
parent child
Show More
@@ -1,43 +1,42
1 1 <div class="contextual">
2 2 <% if User.current.allowed_to?(:manage_issue_relations, @project) %>
3 3 <%= toggle_link l(:button_add), 'new-relation-form', {:focus => 'relation_issue_to_id'} %>
4 4 <% end %>
5 5 </div>
6 6
7 7 <p><strong><%=l(:label_related_issues)%></strong></p>
8 8
9 9 <% if @relations.present? %>
10 10 <form>
11 11 <table class="list issues">
12 12 <% @relations.each do |relation| %>
13 13 <tr class="issue hascontextmenu" id="relation-<%= relation.id %>">
14 14 <td class="checkbox"><%= check_box_tag("ids[]", relation.other_issue(@issue).id, false, :id => nil) %></td>
15 15 <td class="subject"><%= l(relation.label_for(@issue)) %> <%= "(#{l('datetime.distance_in_words.x_days', :count => relation.delay)})" if relation.delay && relation.delay != 0 %>
16 16 <%= h(relation.other_issue(@issue).project) + ' - ' if Setting.cross_project_issue_relations? %>
17 17 <%= link_to_issue(relation.other_issue(@issue), :truncate => 60) %>
18 18 </td>
19 19 <td class="status"><%=h relation.other_issue(@issue).status.name %></td>
20 20 <td class="start_date"><%= format_date(relation.other_issue(@issue).start_date) %></td>
21 21 <td class="due_date"><%= format_date(relation.other_issue(@issue).due_date) %></td>
22 <td class="buttons"><%= link_to_remote(
23 image_tag('link_break.png'),
24 { :url => {:controller => 'issue_relations', :action => 'destroy', :id => relation},
22 <td class="buttons"><%= link_to image_tag('link_break.png'),
23 {:controller => 'issue_relations', :action => 'destroy', :id => relation},
24 :remote => true,
25 25 :method => :delete,
26 :data => {:confirm => l(:text_are_you_sure)} },
27 :title => l(:label_relation_delete)
28 ) if authorize_for('issue_relations', 'destroy') %></td>
26 :data => {:confirm => l(:text_are_you_sure)},
27 :title => l(:label_relation_delete) if User.current.allowed_to?(:manage_issue_relations, @project) %></td>
29 28 </tr>
30 29 <% end %>
31 30 </table>
32 31 </form>
33 32 <% end %>
34 33
35 34 <%= form_for @relation, {
36 35 :as => :relation, :remote => true,
37 36 :url => {:controller => 'issue_relations', :action => 'create', :issue_id => @issue},
38 37 :method => :post,
39 38 :complete => "Form.Element.focus('relation_issue_to_id');",
40 39 :html => {:id => 'new-relation-form', :style => (@relation ? '' : 'display: none;')}
41 40 } do |f| %>
42 41 <%= render :partial => 'issue_relations/form', :locals => {:f => f}%>
43 42 <% end %>
General Comments 0
You need to be logged in to leave comments. Login now