summaryrefslogtreecommitdiffstats
path: root/app/views/trackers
diff options
context:
space:
mode:
Diffstat (limited to 'app/views/trackers')
-rw-r--r--app/views/trackers/list.rhtml9
1 files changed, 5 insertions, 4 deletions
diff --git a/app/views/trackers/list.rhtml b/app/views/trackers/list.rhtml
index 0e8e5c330..188562684 100644
--- a/app/views/trackers/list.rhtml
+++ b/app/views/trackers/list.rhtml
@@ -4,12 +4,12 @@
<h2><%=l(:label_tracker_plural)%></h2>
-<table class="listTableContent">
- <tr class="ListHead">
+<table class="list">
+ <thead><tr>
<th><%=l(:label_tracker)%></th>
<th></th>
- </tr>
-
+ </tr></thead>
+ <tbody>
<% for tracker in @trackers %>
<tr class="<%= cycle("odd", "even") %>">
<td><%= link_to tracker.name, :action => 'edit', :id => tracker %></td>
@@ -18,6 +18,7 @@
</td>
</tr>
<% end %>
+ </tbody>
</table>
<%= pagination_links_full @tracker_pages %> \ No newline at end of file