redmine的subtasks中默认的列只有ticket号、标题、状态、委派人以及进度表。
如果我想在其中加入priority这一列怎么办?
图形界面上没有提供这项功能,只能在后台修改。
-
vi app/helpers/issues_helper.rb
定位到 content_tag('td', h(child.status)) + 这一行,加入
-
content_tag('td', h(child.priority)) +
整个subtasks的代码就像这样:
-
content_tag('td', check_box_tag("ids[]", child.id, false, :id => nil), :class => 'checkbox') +
-
content_tag('td', link_to_issue(child, :truncate => 60, :project => (issue.project_id != child.project_id)), :class => 'subject') +
-
content_tag('td', h(child.status)) +
-
content_tag('td', h(child.priority)) +
-
content_tag('td', link_to_user(child.assigned_to)) +
-
content_tag('td', progress_bar(child.done_ratio, :width => '80px')),
-
:class => css)
然后重启http服务。
阅读(1420) | 评论(0) | 转发(0) |