summaryrefslogtreecommitdiffstats
path: root/app/views/reports/_simple.html.erb
diff options
context:
space:
mode:
Diffstat (limited to 'app/views/reports/_simple.html.erb')
-rw-r--r--app/views/reports/_simple.html.erb18
1 files changed, 9 insertions, 9 deletions
diff --git a/app/views/reports/_simple.html.erb b/app/views/reports/_simple.html.erb
index 8ea18f16f..8cfefe8a7 100644
--- a/app/views/reports/_simple.html.erb
+++ b/app/views/reports/_simple.html.erb
@@ -1,20 +1,20 @@
<% if @statuses.empty? or rows.empty? %>
<p><i><%=l(:label_no_data)%></i></p>
<% else %>
-<table class="list">
+<table class="list issue-report">
<thead><tr>
-<th style="width:25%"></th>
-<th align="center" style="width:25%"><%=l(:label_open_issues_plural)%></th>
-<th align="center" style="width:25%"><%=l(:label_closed_issues_plural)%></th>
-<th align="center" style="width:25%"><%=l(:label_total)%></th>
+<th></th>
+<th><%=l(:label_open_issues_plural)%></th>
+<th><%=l(:label_closed_issues_plural)%></th>
+<th><%=l(:label_total)%></th>
</tr></thead>
<tbody>
<% for row in rows %>
<tr class="<%= cycle("odd", "even") %>">
- <td><%= link_to h(row.name), aggregate_path(@project, field_name, row) %></td>
- <td align="center"><%= aggregate_link data, { field_name => row.id, "closed" => 0 }, aggregate_path(@project, field_name, row, :status_id => "o") %></td>
- <td align="center"><%= aggregate_link data, { field_name => row.id, "closed" => 1 }, aggregate_path(@project, field_name, row, :status_id => "c") %></td>
- <td align="center"><%= aggregate_link data, { field_name => row.id }, aggregate_path(@project, field_name, row, :status_id => "*") %></td>
+ <td class="name"><%= link_to h(row.name), aggregate_path(@project, field_name, row) %></td>
+ <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>