Patch #21776 » add_missing_classes_v2.patch
| app/helpers/issues_helper.rb (working copy) | ||
|---|---|---|
| 112 | 112 |
s << content_tag('tr',
|
| 113 | 113 |
content_tag('td', check_box_tag("ids[]", child.id, false, :id => nil), :class => 'checkbox') +
|
| 114 | 114 |
content_tag('td', link_to_issue(child, :project => (issue.project_id != child.project_id)), :class => 'subject', :style => 'width: 50%') +
|
| 115 |
content_tag('td', h(child.status)) +
|
|
| 116 |
content_tag('td', link_to_user(child.assigned_to)) +
|
|
| 117 |
content_tag('td', child.disabled_core_fields.include?('done_ratio') ? '' : progress_bar(child.done_ratio)),
|
|
| 115 |
content_tag('td', h(child.status), :class => 'status') +
|
|
| 116 |
content_tag('td', link_to_user(child.assigned_to), :class => 'assigned_to') +
|
|
| 117 |
content_tag('td', child.disabled_core_fields.include?('done_ratio') ? '' : progress_bar(child.done_ratio), :class=> 'done_ratio'),
|
|
| 118 | 118 |
:class => css) |
| 119 | 119 |
end |
| 120 | 120 |
s << '</table></form>' |
- « Previous
- 1
- 2
- Next »