summaryrefslogtreecommitdiffstats
path: root/app/views/auth_sources
diff options
context:
space:
mode:
authorJean-Philippe Lang <jp_lang@yahoo.fr>2009-12-25 17:39:06 +0000
committerJean-Philippe Lang <jp_lang@yahoo.fr>2009-12-25 17:39:06 +0000
commit45f3199aa94976c7aa6c6029b72e6de6a7894e50 (patch)
treef7e7750aff219fd067e136f93ca429ba1f56a1b8 /app/views/auth_sources
parent8db9ecef08ee8afe600bdb2d95ead0162b8b43d4 (diff)
downloadredmine-45f3199aa94976c7aa6c6029b72e6de6a7894e50.tar.gz
redmine-45f3199aa94976c7aa6c6029b72e6de6a7894e50.zip
View cleanup.
git-svn-id: svn+ssh://rubyforge.org/var/svn/redmine/trunk@3241 e93f8b46-1217-0410-a6f0-8f06a7374b81
Diffstat (limited to 'app/views/auth_sources')
-rw-r--r--app/views/auth_sources/list.rhtml11
1 files changed, 6 insertions, 5 deletions
diff --git a/app/views/auth_sources/list.rhtml b/app/views/auth_sources/list.rhtml
index 5729ec77c..a29a177c7 100644
--- a/app/views/auth_sources/list.rhtml
+++ b/app/views/auth_sources/list.rhtml
@@ -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 %>
@@ -20,11 +19,13 @@
<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>