@@ -1062,7 +1062,7 module ApplicationHelper | |||||
1062 | (pcts[0] > 0 ? content_tag('td', '', :style => "width: #{pcts[0]}%;", :class => 'closed') : ''.html_safe) + |
|
1062 | (pcts[0] > 0 ? content_tag('td', '', :style => "width: #{pcts[0]}%;", :class => 'closed') : ''.html_safe) + | |
1063 | (pcts[1] > 0 ? content_tag('td', '', :style => "width: #{pcts[1]}%;", :class => 'done') : ''.html_safe) + |
|
1063 | (pcts[1] > 0 ? content_tag('td', '', :style => "width: #{pcts[1]}%;", :class => 'done') : ''.html_safe) + | |
1064 | (pcts[2] > 0 ? content_tag('td', '', :style => "width: #{pcts[2]}%;", :class => 'todo') : ''.html_safe) |
|
1064 | (pcts[2] > 0 ? content_tag('td', '', :style => "width: #{pcts[2]}%;", :class => 'todo') : ''.html_safe) | |
1065 | ), :class => 'progress', :style => "width: #{width};").html_safe + |
|
1065 | ), :class => 'progress progress-#{pcts[0]}', :style => "width: #{width};").html_safe + | |
1066 | content_tag('p', legend, :class => 'percent').html_safe |
|
1066 | content_tag('p', legend, :class => 'percent').html_safe | |
1067 | end |
|
1067 | end | |
1068 |
|
1068 |
@@ -39,9 +39,9 | |||||
39 | <table class="list related-issues"> |
|
39 | <table class="list related-issues"> | |
40 | <caption><%= l(:label_related_issues) %></caption> |
|
40 | <caption><%= l(:label_related_issues) %></caption> | |
41 | <%- @issues.each do |issue| -%> |
|
41 | <%- @issues.each do |issue| -%> | |
42 | <tr class="hascontextmenu"> |
|
42 | <tr class="issue hascontextmenu"> | |
43 | <td class="checkbox"><%= check_box_tag 'ids[]', issue.id, false, :id => nil %></td> |
|
43 | <td class="checkbox"><%= check_box_tag 'ids[]', issue.id, false, :id => nil %></td> | |
44 | <td><%= link_to_issue(issue, :project => (@project != issue.project)) %></td> |
|
44 | <td class="subject"><%= link_to_issue(issue, :project => (@project != issue.project)) %></td> | |
45 | </tr> |
|
45 | </tr> | |
46 | <% end %> |
|
46 | <% end %> | |
47 | </table> |
|
47 | </table> |
General Comments 0
You need to be logged in to leave comments.
Login now