% if @statuses.empty? or rows.empty? %>
<%=l(:label_no_data)%>
<% else %> <% col_width = 70 / (@statuses.length+3) %><% for status in @statuses %> | <%= status.name %> | <% end %><%=l(:label_open_issues_plural)%> | <%=l(:label_closed_issues_plural)%> | <%=l(:label_total)%> |
---|---|---|---|---|
<%= link_to row.name, :controller => 'projects', :action => 'list_issues', :id => ((row.is_a?(Project) ? row : @project)), :set_filter => 1, "#{field_name}" => row.id %> | <% for status in @statuses %><%= link_to (aggregate data, { field_name => row.id, "status_id" => status.id }), :controller => 'projects', :action => 'list_issues', :id => ((row.is_a?(Project) ? row : @project)), :set_filter => 1, "status_id" => status.id, "#{field_name}" => row.id %> | <% end %><%= link_to (aggregate data, { field_name => row.id, "closed" => 0 }), :controller => 'projects', :action => 'list_issues', :id => ((row.is_a?(Project) ? row : @project)), :set_filter => 1, "#{field_name}" => row.id, "status_id" => "o" %> | <%= link_to (aggregate data, { field_name => row.id, "closed" => 1 }), :controller => 'projects', :action => 'list_issues', :id => ((row.is_a?(Project) ? row : @project)), :set_filter => 1, "#{field_name}" => row.id, "status_id" => "c" %> | <%= link_to (aggregate data, { field_name => row.id }), :controller => 'projects', :action => 'list_issues', :id => ((row.is_a?(Project) ? row : @project)), :set_filter => 1, "#{field_name}" => row.id, "status_id" => "*" %> |