OSDN Git Service

View cleanup.
authorJean-Philippe Lang <jp_lang@yahoo.fr>
Fri, 25 Dec 2009 17:39:06 +0000 (17:39 +0000)
committerJean-Philippe Lang <jp_lang@yahoo.fr>
Fri, 25 Dec 2009 17:39:06 +0000 (17:39 +0000)
git-svn-id: svn+ssh://rubyforge.org/var/svn/redmine/trunk@3241 e93f8b46-1217-0410-a6f0-8f06a7374b81

app/views/auth_sources/list.rhtml

index 5729ec7..a29a177 100644 (file)
@@ -11,7 +11,6 @@
          <th><%=l(:field_host)%></th>
          <th><%=l(:label_user_plural)%></th>
          <th></th>
-         <th></th>
   </tr></thead>
   <tbody>
 <% for source in @auth_sources %>
     <td align="center"><%= source.auth_method_name %></td>
     <td align="center"><%= source.host %></td>    
     <td align="center"><%= source.users.count %></td>
-    <td align="center"><%= link_to l(:button_test), :action => 'test_connection', :id => source %></td>
-    <td align="center"><%= button_to l(:button_delete), { :action => 'destroy', :id => source },
+    <td class="buttons">
+       <%= link_to l(:button_test), :action => 'test_connection', :id => source %>
+       <%= link_to l(:button_delete), { :action => 'destroy', :id => source },
                                                         :confirm => l(:text_are_you_sure),
-                                                        :class => "button-small",
-                                                        :disabled => source.users.any? %></td>
+                                                        :class => 'icon icon-del',
+                                                        :disabled => source.users.any? %>
+    </td>
   </tr>
 <% end %>
   </tbody>