##// END OF EJS Templates
Fixed: 'Delete' link on LDAP list has no effect (#4530)....
Jean-Philippe Lang -
r3168:eecc6864a96f
parent child
Show More
@@ -1,34 +1,35
1 1 <div class="contextual">
2 2 <%= link_to l(:label_auth_source_new), {:action => 'new'}, :class => 'icon icon-add' %>
3 3 </div>
4 4
5 5 <h2><%=l(:label_auth_source_plural)%></h2>
6 6
7 7 <table class="list">
8 8 <thead><tr>
9 9 <th><%=l(:field_name)%></th>
10 10 <th><%=l(:field_type)%></th>
11 11 <th><%=l(:field_host)%></th>
12 12 <th><%=l(:label_user_plural)%></th>
13 13 <th></th>
14 14 </tr></thead>
15 15 <tbody>
16 16 <% for source in @auth_sources %>
17 17 <tr class="<%= cycle("odd", "even") %>">
18 18 <td><%= link_to source.name, :action => 'edit', :id => source%></td>
19 19 <td align="center"><%= source.auth_method_name %></td>
20 20 <td align="center"><%= source.host %></td>
21 21 <td align="center"><%= source.users.count %></td>
22 22 <td class="buttons">
23 23 <%= link_to l(:button_test), :action => 'test_connection', :id => source %>
24 24 <%= link_to l(:button_delete), { :action => 'destroy', :id => source },
25 :method => :post,
25 26 :confirm => l(:text_are_you_sure),
26 27 :class => 'icon icon-del',
27 28 :disabled => source.users.any? %>
28 29 </td>
29 30 </tr>
30 31 <% end %>
31 32 </tbody>
32 33 </table>
33 34
34 35 <p class="pagination"><%= pagination_links_full @auth_source_pages %></p>
General Comments 0
You need to be logged in to leave comments. Login now