remove trailing white-spaces from app/views/reports/_details.rhtml.
git-svn-id: svn+ssh://rubyforge.org/var/svn/redmine/trunk@6342 e93f8b46-1217-0410-a6f0-8f06a7374b81
This commit is contained in:
parent
59bc5af7ff
commit
65f38732a5
|
@ -15,39 +15,39 @@
|
||||||
<tbody>
|
<tbody>
|
||||||
<% for row in rows %>
|
<% for row in rows %>
|
||||||
<tr class="<%= cycle("odd", "even") %>">
|
<tr class="<%= cycle("odd", "even") %>">
|
||||||
<td><%= link_to h(row.name), :controller => 'issues', :action => 'index', :project_id => ((row.is_a?(Project) ? row : @project)),
|
<td><%= link_to h(row.name), :controller => 'issues', :action => 'index', :project_id => ((row.is_a?(Project) ? row : @project)),
|
||||||
:set_filter => 1,
|
:set_filter => 1,
|
||||||
:subproject_id => '!*',
|
:subproject_id => '!*',
|
||||||
"#{field_name}" => row.id %></td>
|
"#{field_name}" => row.id %></td>
|
||||||
<% for status in @statuses %>
|
<% for status in @statuses %>
|
||||||
<td align="center"><%= aggregate_link data, { field_name => row.id, "status_id" => status.id },
|
<td align="center"><%= aggregate_link data, { field_name => row.id, "status_id" => status.id },
|
||||||
:controller => 'issues', :action => 'index', :project_id => ((row.is_a?(Project) ? row : @project)),
|
:controller => 'issues', :action => 'index', :project_id => ((row.is_a?(Project) ? row : @project)),
|
||||||
:set_filter => 1,
|
:set_filter => 1,
|
||||||
:subproject_id => '!*',
|
:subproject_id => '!*',
|
||||||
"status_id" => status.id,
|
"status_id" => status.id,
|
||||||
"#{field_name}" => row.id %></td>
|
"#{field_name}" => row.id %></td>
|
||||||
<% end %>
|
<% end %>
|
||||||
<td align="center"><%= aggregate_link data, { field_name => row.id, "closed" => 0 },
|
<td align="center"><%= aggregate_link data, { field_name => row.id, "closed" => 0 },
|
||||||
:controller => 'issues', :action => 'index', :project_id => ((row.is_a?(Project) ? row : @project)),
|
:controller => 'issues', :action => 'index', :project_id => ((row.is_a?(Project) ? row : @project)),
|
||||||
:set_filter => 1,
|
:set_filter => 1,
|
||||||
:subproject_id => '!*',
|
:subproject_id => '!*',
|
||||||
"#{field_name}" => row.id,
|
"#{field_name}" => row.id,
|
||||||
"status_id" => "o" %></td>
|
"status_id" => "o" %></td>
|
||||||
<td align="center"><%= aggregate_link data, { field_name => row.id, "closed" => 1 },
|
<td align="center"><%= aggregate_link data, { field_name => row.id, "closed" => 1 },
|
||||||
:controller => 'issues', :action => 'index', :project_id => ((row.is_a?(Project) ? row : @project)),
|
:controller => 'issues', :action => 'index', :project_id => ((row.is_a?(Project) ? row : @project)),
|
||||||
:set_filter => 1,
|
:set_filter => 1,
|
||||||
:subproject_id => '!*',
|
:subproject_id => '!*',
|
||||||
"#{field_name}" => row.id,
|
"#{field_name}" => row.id,
|
||||||
"status_id" => "c" %></td>
|
"status_id" => "c" %></td>
|
||||||
<td align="center"><%= aggregate_link data, { field_name => row.id },
|
<td align="center"><%= aggregate_link data, { field_name => row.id },
|
||||||
:controller => 'issues', :action => 'index', :project_id => ((row.is_a?(Project) ? row : @project)),
|
:controller => 'issues', :action => 'index', :project_id => ((row.is_a?(Project) ? row : @project)),
|
||||||
:set_filter => 1,
|
:set_filter => 1,
|
||||||
:subproject_id => '!*',
|
:subproject_id => '!*',
|
||||||
"#{field_name}" => row.id,
|
"#{field_name}" => row.id,
|
||||||
"status_id" => "*" %></td>
|
"status_id" => "*" %></td>
|
||||||
</tr>
|
</tr>
|
||||||
<% end %>
|
<% end %>
|
||||||
</tbody>
|
</tbody>
|
||||||
</table>
|
</table>
|
||||||
<% end
|
<% end
|
||||||
reset_cycle %>
|
reset_cycle %>
|
||||||
|
|
Loading…
Reference in New Issue