View cleanup.
git-svn-id: svn+ssh://rubyforge.org/var/svn/redmine/trunk@3241 e93f8b46-1217-0410-a6f0-8f06a7374b81
This commit is contained in:
parent
8db9ecef08
commit
45f3199aa9
|
@ -11,7 +11,6 @@
|
||||||
<th><%=l(:field_host)%></th>
|
<th><%=l(:field_host)%></th>
|
||||||
<th><%=l(:label_user_plural)%></th>
|
<th><%=l(:label_user_plural)%></th>
|
||||||
<th></th>
|
<th></th>
|
||||||
<th></th>
|
|
||||||
</tr></thead>
|
</tr></thead>
|
||||||
<tbody>
|
<tbody>
|
||||||
<% for source in @auth_sources %>
|
<% for source in @auth_sources %>
|
||||||
|
@ -20,11 +19,13 @@
|
||||||
<td align="center"><%= source.auth_method_name %></td>
|
<td align="center"><%= source.auth_method_name %></td>
|
||||||
<td align="center"><%= source.host %></td>
|
<td align="center"><%= source.host %></td>
|
||||||
<td align="center"><%= source.users.count %></td>
|
<td align="center"><%= source.users.count %></td>
|
||||||
<td align="center"><%= link_to l(:button_test), :action => 'test_connection', :id => source %></td>
|
<td class="buttons">
|
||||||
<td align="center"><%= button_to l(:button_delete), { :action => 'destroy', :id => source },
|
<%= 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),
|
:confirm => l(:text_are_you_sure),
|
||||||
:class => "button-small",
|
:class => 'icon icon-del',
|
||||||
:disabled => source.users.any? %></td>
|
:disabled => source.users.any? %>
|
||||||
|
</td>
|
||||||
</tr>
|
</tr>
|
||||||
<% end %>
|
<% end %>
|
||||||
</tbody>
|
</tbody>
|
||||||
|
|
Loading…
Reference in New Issue