summaryrefslogtreecommitdiffstats
path: root/app/helpers/issues_helper.rb
diff options
context:
space:
mode:
authorJean-Philippe Lang <jp_lang@yahoo.fr>2010-03-13 15:47:06 +0000
committerJean-Philippe Lang <jp_lang@yahoo.fr>2010-03-13 15:47:06 +0000
commit508df4a33acba2cc65e141ad9620098316674e7b (patch)
treec00abdcc6f62e930efce0d023b958b621933f84c /app/helpers/issues_helper.rb
parente016f3ef1376ba27e0f376608777087b6ee64f1e (diff)
downloadredmine-508df4a33acba2cc65e141ad9620098316674e7b.tar.gz
redmine-508df4a33acba2cc65e141ad9620098316674e7b.zip
Slight UI changes to the subtasks tree.
git-svn-id: svn+ssh://rubyforge.org/var/svn/redmine/trunk@3577 e93f8b46-1217-0410-a6f0-8f06a7374b81
Diffstat (limited to 'app/helpers/issues_helper.rb')
-rw-r--r--app/helpers/issues_helper.rb6
1 files changed, 3 insertions, 3 deletions
diff --git a/app/helpers/issues_helper.rb b/app/helpers/issues_helper.rb
index db21e9ab7..aa140572f 100644
--- a/app/helpers/issues_helper.rb
+++ b/app/helpers/issues_helper.rb
@@ -47,9 +47,9 @@ module IssuesHelper
issue.descendants.sort_by(&:lft).each do |child|
level = child.level - issue.level - 1
s << content_tag('tr',
- content_tag('td', check_box_tag("ids[]", child.id, false, :id => nil)) +
- content_tag('td', link_to_issue(child), :class => 'subject',
- :style => "padding-left: #{level * 20}px") +
+ content_tag('td', check_box_tag("ids[]", child.id, false, :id => nil), :class => 'checkbox') +
+ content_tag('td', link_to_issue(child, :truncate => 60), :class => 'subject',
+ :style => "padding-left: #{level * 20}px") +
content_tag('td', h(child.status)) +
content_tag('td', link_to_user(child.assigned_to)) +
content_tag('td', progress_bar(child.done_ratio, :width => '80px')),