diff options
author | Jean-Philippe Lang <jp_lang@yahoo.fr> | 2006-12-24 16:35:25 +0000 |
---|---|---|
committer | Jean-Philippe Lang <jp_lang@yahoo.fr> | 2006-12-24 16:35:25 +0000 |
commit | d3600e729fbcbadad2923fadabeabae02620e755 (patch) | |
tree | 2e3872e7b06c0b720379d259ffaaf72b34ec5325 /app/views/reports/_simple.rhtml | |
parent | 6c8e1514aa0cde2e89aad6c525ede8feb384ccf8 (diff) | |
download | redmine-d3600e729fbcbadad2923fadabeabae02620e755.tar.gz redmine-d3600e729fbcbadad2923fadabeabae02620e755.zip |
css cleaning
git-svn-id: http://redmine.rubyforge.org/svn/trunk@108 e93f8b46-1217-0410-a6f0-8f06a7374b81
Diffstat (limited to 'app/views/reports/_simple.rhtml')
-rw-r--r-- | app/views/reports/_simple.rhtml | 19 |
1 files changed, 10 insertions, 9 deletions
diff --git a/app/views/reports/_simple.rhtml b/app/views/reports/_simple.rhtml index 778b9cbde..24cbd9b7f 100644 --- a/app/views/reports/_simple.rhtml +++ b/app/views/reports/_simple.rhtml @@ -1,14 +1,14 @@ <% if @statuses.empty? or rows.empty? %>
<p><i><%=l(:label_no_data)%></i></p>
<% else %>
-<table class="reportTableContent">
-<tr>
-<td width="25%"></td>
-<td align="center" width="25%"><%=l(:label_open_issues_plural)%></td>
-<td align="center" width="25%"><%=l(:label_closed_issues_plural)%></td>
-<td align="center" width="25%"><%=l(:label_total)%></td>
-</tr>
-
+<table class="list">
+<thead><tr>
+<th width="25%"></th>
+<th align="center" width="25%"><%=l(:label_open_issues_plural)%></th>
+<th align="center" width="25%"><%=l(:label_closed_issues_plural)%></th>
+<th align="center" width="25%"><%=l(:label_total)%></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,
@@ -29,8 +29,9 @@ :set_filter => 1,
"#{field_name}" => row.id,
"status_id" => "*" %></td>
-<% end %>
</tr>
+<% end %>
+</tbody>
</table>
<% end
reset_cycle %>
\ No newline at end of file |