comparison .svn/pristine/dd/dd2f17495a5de7a35d1857b166c6828fc3d5d850.svn-base @ 1464:261b3d9a4903 redmine-2.4

Update to Redmine 2.4 branch rev 12663
author Chris Cannam
date Tue, 14 Jan 2014 14:37:42 +0000
parents
children
comparison
equal deleted inserted replaced
1296:038ba2d95de8 1464:261b3d9a4903
1 <% if @statuses.empty? or rows.empty? %>
2 <p><i><%=l(:label_no_data)%></i></p>
3 <% else %>
4 <table class="list issue-report">
5 <thead><tr>
6 <th></th>
7 <% for status in @statuses %>
8 <th><%=h status.name %></th>
9 <% end %>
10 <th><strong><%=l(:label_open_issues_plural)%></strong></th>
11 <th><strong><%=l(:label_closed_issues_plural)%></strong></th>
12 <th><strong><%=l(:label_total)%></strong></th>
13 </tr></thead>
14 <tbody>
15 <% for row in rows %>
16 <tr class="<%= cycle("odd", "even") %>">
17 <td class="name"><%= link_to h(row.name), aggregate_path(@project, field_name, row) %></td>
18 <% for status in @statuses %>
19 <td><%= aggregate_link data, { field_name => row.id, "status_id" => status.id }, aggregate_path(@project, field_name, row, :status_id => status.id) %></td>
20 <% end %>
21 <td><%= aggregate_link data, { field_name => row.id, "closed" => 0 }, aggregate_path(@project, field_name, row, :status_id => "o") %></td>
22 <td><%= aggregate_link data, { field_name => row.id, "closed" => 1 }, aggregate_path(@project, field_name, row, :status_id => "c") %></td>
23 <td><%= aggregate_link data, { field_name => row.id }, aggregate_path(@project, field_name, row, :status_id => "*") %></td>
24 </tr>
25 <% end %>
26 </tbody>
27 </table>
28 <% end
29 reset_cycle %>