Redmine 3.4.4
This commit is contained in:
commit
64924a6376
2112 changed files with 259028 additions and 0 deletions
31
app/views/auth_sources/index.html.erb
Normal file
31
app/views/auth_sources/index.html.erb
Normal file
|
@ -0,0 +1,31 @@
|
|||
<div class="contextual">
|
||||
<%= link_to l(:label_auth_source_new), {:action => 'new'}, :class => 'icon icon-add' %>
|
||||
</div>
|
||||
|
||||
<%= title l(:label_auth_source_plural) %>
|
||||
|
||||
<table class="list">
|
||||
<thead><tr>
|
||||
<th><%=l(:field_name)%></th>
|
||||
<th><%=l(:field_type)%></th>
|
||||
<th><%=l(:field_host)%></th>
|
||||
<th><%=l(:label_user_plural)%></th>
|
||||
<th></th>
|
||||
</tr></thead>
|
||||
<tbody>
|
||||
<% for source in @auth_sources %>
|
||||
<tr id="auth-source-<%= source.id %>">
|
||||
<td class="name"><%= link_to(source.name, :action => 'edit', :id => source)%></td>
|
||||
<td><%= source.auth_method_name %></td>
|
||||
<td><%= source.host %></td>
|
||||
<td><%= source.users.count %></td>
|
||||
<td class="buttons">
|
||||
<%= link_to l(:button_test), try_connection_auth_source_path(source), :class => 'icon icon-test' %>
|
||||
<%= delete_link auth_source_path(source) %>
|
||||
</td>
|
||||
</tr>
|
||||
<% end %>
|
||||
</tbody>
|
||||
</table>
|
||||
|
||||
<span class="pagination"><%= pagination_links_full @auth_source_pages %></span>
|
Loading…
Add table
Add a link
Reference in a new issue