Project

General

Profile

Feature #25540 » 25540.patch

Takenori TAKAKI, 2019-06-20 16:50

View differences:

app/helpers/issues_helper.rb
108 108
             content_tag('td', check_box_tag("ids[]", child.id, false, :id => nil), :class => 'checkbox') +
109 109
             content_tag('td', link_to_issue(child, :project => (issue.project_id != child.project_id)), :class => 'subject', :style => 'width: 50%') +
110 110
             content_tag('td', h(child.status), :class => 'status') +
111
             content_tag('td', format_date(child.start_date), :class => 'start_date') +
112
             content_tag('td', format_date(child.due_date), :class => 'due_date') +
111 113
             content_tag('td', link_to_user(child.assigned_to), :class => 'assigned_to') +
112 114
             content_tag('td', child.disabled_core_fields.include?('done_ratio') ? '' : progress_bar(child.done_ratio), :class=> 'done_ratio') +
113 115
             content_tag('td', buttons, :class => 'buttons'),
......
141 143
             content_tag('td', other_issue.status, :class => 'status') +
142 144
             content_tag('td', format_date(other_issue.start_date), :class => 'start_date') +
143 145
             content_tag('td', format_date(other_issue.due_date), :class => 'due_date') +
146
             content_tag('td', link_to_user(other_issue.assigned_to), :class => 'assigned_to') +
144 147
             content_tag('td', other_issue.disabled_core_fields.include?('done_ratio') ? '' : progress_bar(other_issue.done_ratio), :class=> 'done_ratio') +
145 148
             content_tag('td', buttons, :class => 'buttons'),
146 149
             :id => "relation-#{relation.id}",
(2-2/2)