##// END OF EJS Templates
Show project name in front of related issues if cross-project issue relations are enabled (#2282)....
Jean-Philippe Lang -
r2099:a02ee731818d
parent child
Show More
@@ -10,7 +10,8
10 10 <table style="width:100%">
11 11 <% @issue.relations.each do |relation| %>
12 12 <tr>
13 <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>
13 <td><%= l(relation.label_for(@issue)) %> <%= "(#{lwr(:actionview_datehelper_time_in_words_day, relation.delay)})" if relation.delay && relation.delay != 0 %>
14 <%= h(relation.other_issue(@issue).project) + ' - ' if Setting.cross_project_issue_relations? %> <%= link_to_issue relation.other_issue(@issue) %></td>
14 15 <td><%=h relation.other_issue(@issue).subject %></td>
15 16 <td><%= relation.other_issue(@issue).status.name %></td>
16 17 <td><%= format_date(relation.other_issue(@issue).start_date) %></td>
General Comments 0
You need to be logged in to leave comments. Login now