summaryrefslogtreecommitdiffstats
path: root/app/views/roles/list.rhtml
diff options
context:
space:
mode:
Diffstat (limited to 'app/views/roles/list.rhtml')
-rw-r--r--app/views/roles/list.rhtml9
1 files changed, 5 insertions, 4 deletions
diff --git a/app/views/roles/list.rhtml b/app/views/roles/list.rhtml
index 9ef566892..0e8109c8b 100644
--- a/app/views/roles/list.rhtml
+++ b/app/views/roles/list.rhtml
@@ -4,12 +4,12 @@
<h2><%=l(:label_role_plural)%></h2>
-<table class="listTableContent">
- <tr class="ListHead">
+<table class="list">
+ <thead><tr>
<th><%=l(:label_role)%></th>
<th></th>
- </tr>
-
+ </tr></thead>
+ <tbody>
<% for role in @roles %>
<tr class="<%= cycle("odd", "even") %>">
<td><%= link_to role.name, :action => 'edit', :id => role %></td>
@@ -17,6 +17,7 @@
<%= button_to l(:button_delete), { :action => 'destroy', :id => role }, :confirm => l(:text_are_you_sure), :class => "button-small" %>
</tr>
<% end %>
+ </tbody>
</table>
<%= pagination_links_full @role_pages %> \ No newline at end of file