Project

General

Profile

Download (1.13 KB) Statistics
| Branch: | Tag: | Revision:
<% javascript 'auth_source_ldap' %>

<% title _("LDAP Authentication") %>

<% title_actions(display_link_if_authorized(_("New LDAP Source"), hash_for_new_auth_source_ldap_path), documentation_button('4.1.1LDAPAuthentication')) %>

<table class="table table-bordered table-striped table-two-pane">
<thead>
<tr>
<th><%= s_("AuthSource|Name") %></th>
<th><%= s_("AuthSource|Host") %></th>
<th><%= s_("AuthSource|Onthefly register") %></th>
<th><%= s_("AuthSource|LDAPS") %></th>
<th></th>
</tr>
</thead>
<tbody>
<% for auth_source_ldap in @auth_source_ldaps %>
<tr>
<td class="display-two-pane"><%=link_to_if_authorized trunc_with_tooltip(auth_source_ldap.name), hash_for_edit_auth_source_ldap_path(:id => auth_source_ldap) %></td>
<td><%=h auth_source_ldap.host %></td>
<td><%=checked_icon auth_source_ldap.onthefly_register %></td>
<td><%=checked_icon auth_source_ldap.tls %></td>
<td><%= display_delete_if_authorized hash_for_auth_source_ldap_path(:id => auth_source_ldap), :confirm => _("Delete %s?") % auth_source_ldap.name %></td>
</tr>
<% end %>
</tbody>
</table>
(3-3/5)