##// END OF EJS Templates
remove trailing white-spaces from app/views/reports/_details.rhtml....
Toshi MARUYAMA -
r6222:65f38732a573
parent child
Show More
@@ -15,39 +15,39
15 15 <tbody>
16 16 <% for row in rows %>
17 17 <tr class="<%= cycle("odd", "even") %>">
18 <td><%= link_to h(row.name), :controller => 'issues', :action => 'index', :project_id => ((row.is_a?(Project) ? row : @project)),
19 :set_filter => 1,
18 <td><%= link_to h(row.name), :controller => 'issues', :action => 'index', :project_id => ((row.is_a?(Project) ? row : @project)),
19 :set_filter => 1,
20 20 :subproject_id => '!*',
21 21 "#{field_name}" => row.id %></td>
22 22 <% for status in @statuses %>
23 <td align="center"><%= aggregate_link data, { field_name => row.id, "status_id" => status.id },
24 :controller => 'issues', :action => 'index', :project_id => ((row.is_a?(Project) ? row : @project)),
25 :set_filter => 1,
23 <td align="center"><%= aggregate_link data, { field_name => row.id, "status_id" => status.id },
24 :controller => 'issues', :action => 'index', :project_id => ((row.is_a?(Project) ? row : @project)),
25 :set_filter => 1,
26 26 :subproject_id => '!*',
27 "status_id" => status.id,
27 "status_id" => status.id,
28 28 "#{field_name}" => row.id %></td>
29 29 <% end %>
30 30 <td align="center"><%= aggregate_link data, { field_name => row.id, "closed" => 0 },
31 :controller => 'issues', :action => 'index', :project_id => ((row.is_a?(Project) ? row : @project)),
32 :set_filter => 1,
31 :controller => 'issues', :action => 'index', :project_id => ((row.is_a?(Project) ? row : @project)),
32 :set_filter => 1,
33 33 :subproject_id => '!*',
34 34 "#{field_name}" => row.id,
35 35 "status_id" => "o" %></td>
36 36 <td align="center"><%= aggregate_link data, { field_name => row.id, "closed" => 1 },
37 :controller => 'issues', :action => 'index', :project_id => ((row.is_a?(Project) ? row : @project)),
38 :set_filter => 1,
37 :controller => 'issues', :action => 'index', :project_id => ((row.is_a?(Project) ? row : @project)),
38 :set_filter => 1,
39 39 :subproject_id => '!*',
40 40 "#{field_name}" => row.id,
41 41 "status_id" => "c" %></td>
42 42 <td align="center"><%= aggregate_link data, { field_name => row.id },
43 :controller => 'issues', :action => 'index', :project_id => ((row.is_a?(Project) ? row : @project)),
44 :set_filter => 1,
43 :controller => 'issues', :action => 'index', :project_id => ((row.is_a?(Project) ? row : @project)),
44 :set_filter => 1,
45 45 :subproject_id => '!*',
46 46 "#{field_name}" => row.id,
47 "status_id" => "*" %></td>
47 "status_id" => "*" %></td>
48 48 </tr>
49 49 <% end %>
50 50 </tbody>
51 51 </table>
52 52 <% end
53 reset_cycle %> No newline at end of file
53 reset_cycle %>
General Comments 0
You need to be logged in to leave comments. Login now