kanbanworkflowstimelinescrumrubyroadmapproject-planningproject-managementopenprojectangularissue-trackerifcgantt-chartganttbug-trackerboardsbcf
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
48 lines
2.8 KiB
48 lines
2.8 KiB
<% if @statuses.empty? or rows.empty? %>
|
|
<p><i><%=l(:label_no_data)%></i></p>
|
|
<% else %>
|
|
<% col_width = 70 / (@statuses.length+3) %>
|
|
<table class="list">
|
|
<thead><tr>
|
|
<th style="width:25%"></th>
|
|
<% for status in @statuses %>
|
|
<th style="text-align:left;width:<%= col_width %>%"><div class="square" style="background:#<%= status.html_color %>;"></div> <small><%= status.name %></small></th>
|
|
<% end %>
|
|
<th align="center" style="width:<%= col_width %>%"><strong><%=l(:label_open_issues_plural)%></strong></th>
|
|
<th align="center" style="width:<%= col_width %>%"><strong><%=l(:label_closed_issues_plural)%></strong></th>
|
|
<th align="center" style="width:<%= col_width %>%"><strong><%=l(:label_total)%></strong></th>
|
|
</tr></thead>
|
|
<tbody>
|
|
<% for row in rows %>
|
|
<tr class="<%= cycle("odd", "even") %>">
|
|
<td><%= link_to row.name, :controller => 'projects', :action => 'list_issues', :id => @project,
|
|
:set_filter => 1,
|
|
"#{field_name}" => row.id %></td>
|
|
<% for status in @statuses %>
|
|
<td align="center"><%= link_to (aggregate data, { field_name => row.id, "status_id" => status.id }),
|
|
:controller => 'projects', :action => 'list_issues', :id => @project,
|
|
:set_filter => 1,
|
|
"status_id" => status.id,
|
|
"#{field_name}" => row.id %></td>
|
|
<% end %>
|
|
<td align="center"><%= link_to (aggregate data, { field_name => row.id, "closed" => 0 }),
|
|
:controller => 'projects', :action => 'list_issues', :id => @project,
|
|
:set_filter => 1,
|
|
"#{field_name}" => row.id,
|
|
"status_id" => "o" %></td>
|
|
<td align="center"><%= link_to (aggregate data, { field_name => row.id, "closed" => 1 }),
|
|
:controller => 'projects', :action => 'list_issues', :id => @project,
|
|
:set_filter => 1,
|
|
"#{field_name}" => row.id,
|
|
"status_id" => "c" %></td>
|
|
<td align="center"><%= link_to (aggregate data, { field_name => row.id }),
|
|
:controller => 'projects', :action => 'list_issues', :id => @project,
|
|
:set_filter => 1,
|
|
"#{field_name}" => row.id,
|
|
"status_id" => "*" %></td>
|
|
</tr>
|
|
<% end %>
|
|
</tbody>
|
|
</table>
|
|
<% end
|
|
reset_cycle %> |