summaryrefslogtreecommitdiffstats
path: root/app/views/roles/list.rhtml
diff options
context:
space:
mode:
authorJean-Philippe Lang <jp_lang@yahoo.fr>2006-12-24 16:35:25 +0000
committerJean-Philippe Lang <jp_lang@yahoo.fr>2006-12-24 16:35:25 +0000
commitd3600e729fbcbadad2923fadabeabae02620e755 (patch)
tree2e3872e7b06c0b720379d259ffaaf72b34ec5325 /app/views/roles/list.rhtml
parent6c8e1514aa0cde2e89aad6c525ede8feb384ccf8 (diff)
downloadredmine-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/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