@@ -84,7 +84,7 module IssuesHelper | |||||
84 | css << " idnt idnt-#{level}" if level > 0 |
|
84 | css << " idnt idnt-#{level}" if level > 0 | |
85 | s << content_tag('tr', |
|
85 | s << content_tag('tr', | |
86 | content_tag('td', check_box_tag("ids[]", child.id, false, :id => nil), :class => 'checkbox') + |
|
86 | content_tag('td', check_box_tag("ids[]", child.id, false, :id => nil), :class => 'checkbox') + | |
87 |
content_tag('td', link_to_issue(child |
|
87 | content_tag('td', link_to_issue(child, :project => (issue.project_id != child.project_id)), :class => 'subject', :style => 'width: 50%') + | |
88 | content_tag('td', h(child.status)) + |
|
88 | content_tag('td', h(child.status)) + | |
89 | content_tag('td', link_to_user(child.assigned_to)) + |
|
89 | content_tag('td', link_to_user(child.assigned_to)) + | |
90 | content_tag('td', progress_bar(child.done_ratio, :width => '80px')), |
|
90 | content_tag('td', progress_bar(child.done_ratio, :width => '80px')), |
@@ -13,8 +13,8 | |||||
13 | <% other_issue = relation.other_issue(@issue) -%> |
|
13 | <% other_issue = relation.other_issue(@issue) -%> | |
14 | <tr class="issue hascontextmenu" id="relation-<%= relation.id %>"> |
|
14 | <tr class="issue hascontextmenu" id="relation-<%= relation.id %>"> | |
15 | <td class="checkbox"><%= check_box_tag("ids[]", other_issue.id, false, :id => nil) %></td> |
|
15 | <td class="checkbox"><%= check_box_tag("ids[]", other_issue.id, false, :id => nil) %></td> | |
16 | <td class="subject"> |
|
16 | <td class="subject" style="width: 50%"> | |
17 |
<%= relation.to_s(@issue) {|other| link_to_issue(other, : |
|
17 | <%= relation.to_s(@issue) {|other| link_to_issue(other, :project => Setting.cross_project_issue_relations?)}.html_safe %> | |
18 | </td> |
|
18 | </td> | |
19 | <td class="status"><%=h other_issue.status.name %></td> |
|
19 | <td class="status"><%=h other_issue.status.name %></td> | |
20 | <td class="start_date"><%= format_date(other_issue.start_date) %></td> |
|
20 | <td class="start_date"><%= format_date(other_issue.start_date) %></td> |
General Comments 0
You need to be logged in to leave comments.
Login now