##// END OF EJS Templates
remove trailing white-spaces from app/views/versions/_issue_counts.rhtml....
Toshi MARUYAMA -
r6218:f9c36d82a1b6
parent child
Show More
@@ -1,35 +1,35
1 1 <form id="status_by_form">
2 2 <fieldset>
3 3 <legend>
4 <%= l(:label_issues_by,
4 <%= l(:label_issues_by,
5 5 select_tag('status_by',
6 6 status_by_options_for_select(criteria),
7 7 :id => 'status_by_select',
8 8 :onchange => remote_function(:url => status_by_version_path(version),
9 9 :with => "Form.serialize('status_by_form')"))) %>
10 10 </legend>
11 11 <% if counts.empty? %>
12 12 <p><em><%= l(:label_no_data) %></em></p>
13 13 <% else %>
14 14 <table>
15 15 <% counts.each do |count| %>
16 16 <tr>
17 17 <td width="130px" align="right" >
18 <%= link_to count[:group], {:controller => 'issues',
18 <%= link_to count[:group], {:controller => 'issues',
19 19 :action => 'index',
20 20 :project_id => version.project,
21 21 :set_filter => 1,
22 22 :status_id => '*',
23 23 :fixed_version_id => version}.merge("#{criteria}_id".to_sym => count[:group]) %>
24 24 </td>
25 25 <td width="240px">
26 <%= progress_bar((count[:closed].to_f / count[:total])*100,
26 <%= progress_bar((count[:closed].to_f / count[:total])*100,
27 27 :legend => "#{count[:closed]}/#{count[:total]}",
28 28 :width => "#{(count[:total].to_f / max * 200).floor}px;") %>
29 29 </td>
30 30 </tr>
31 31 <% end %>
32 32 </table>
33 33 <% end %>
34 34 </fieldset>
35 35 </form>
General Comments 0
You need to be logged in to leave comments. Login now