Redmine 3.4.4
This commit is contained in:
commit
64924a6376
2112 changed files with 259028 additions and 0 deletions
28
app/views/reports/_details.html.erb
Normal file
28
app/views/reports/_details.html.erb
Normal file
|
@ -0,0 +1,28 @@
|
|||
<% if @statuses.empty? or rows.empty? %>
|
||||
<p><i><%=l(:label_no_data)%></i></p>
|
||||
<% else %>
|
||||
<table class="list issue-report">
|
||||
<thead><tr>
|
||||
<th></th>
|
||||
<% for status in @statuses %>
|
||||
<th><%= status.name %></th>
|
||||
<% end %>
|
||||
<th><strong><%=l(:label_open_issues_plural)%></strong></th>
|
||||
<th><strong><%=l(:label_closed_issues_plural)%></strong></th>
|
||||
<th><strong><%=l(:label_total)%></strong></th>
|
||||
</tr></thead>
|
||||
<tbody>
|
||||
<% for row in rows %>
|
||||
<tr>
|
||||
<td class="name"><%= link_to row.name, aggregate_path(@project, field_name, row) %></td>
|
||||
<% for status in @statuses %>
|
||||
<td><%= aggregate_link data, { field_name => row.id, "status_id" => status.id }, aggregate_path(@project, field_name, row, :status_id => status.id) %></td>
|
||||
<% end %>
|
||||
<td><%= aggregate_link data, { field_name => row.id, "closed" => 0 }, aggregate_path(@project, field_name, row, :status_id => "o") %></td>
|
||||
<td><%= aggregate_link data, { field_name => row.id, "closed" => 1 }, aggregate_path(@project, field_name, row, :status_id => "c") %></td>
|
||||
<td><%= aggregate_link data, { field_name => row.id }, aggregate_path(@project, field_name, row, :status_id => "*") %></td>
|
||||
</tr>
|
||||
<% end %>
|
||||
</tbody>
|
||||
</table>
|
||||
<% end %>
|
Loading…
Add table
Add a link
Reference in a new issue