summaryrefslogtreecommitdiffstats
path: root/app/views/projects/list.rhtml
diff options
context:
space:
mode:
Diffstat (limited to 'app/views/projects/list.rhtml')
-rw-r--r--app/views/projects/list.rhtml9
1 files changed, 5 insertions, 4 deletions
diff --git a/app/views/projects/list.rhtml b/app/views/projects/list.rhtml
index 69e2c064f..59580797d 100644
--- a/app/views/projects/list.rhtml
+++ b/app/views/projects/list.rhtml
@@ -1,12 +1,12 @@
<h2><%=l(:label_public_projects)%></h2>
-<table class="listTableContent">
- <tr class="ListHead">
+<table class="list">
+ <thead><tr>
<%= sort_header_tag('name', :caption => l(:label_project)) %>
<th><%=l(:field_description)%></th>
<%= sort_header_tag('created_on', :caption => l(:field_created_on)) %>
- </tr>
-
+ </tr></thead>
+ <tbody>
<% for project in @projects %>
<tr class="<%= cycle("odd", "even") %>">
<td><%= link_to project.name, :action => 'show', :id => project %>
@@ -14,6 +14,7 @@
<td align="center"><%= format_date(project.created_on) %>
</tr>
<% end %>
+ </tbody>
</table>
<%= pagination_links_full @project_pages %>