Sha256: 13157ed2164fc10ae92acfef7cc2432b2d1200d7c6936c213418b7a20ef06834

Contents?: true

Size: 995 Bytes

Versions: 34

Compression:

Stored size: 995 Bytes

Contents

<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 %>" class="<%= cycle("odd", "even") %>">
    <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>

<p class="pagination"><%= pagination_links_full @auth_source_pages %></p>

Version data entries

34 entries across 34 versions & 1 rubygems

Version Path
redmine_extensions-0.0.39 spec/redmine/app/views/auth_sources/index.html.erb
redmine_extensions-0.0.38 spec/redmine/app/views/auth_sources/index.html.erb
redmine_extensions-0.0.37 spec/redmine/app/views/auth_sources/index.html.erb
redmine_extensions-0.1.11 spec/redmine/app/views/auth_sources/index.html.erb
redmine_extensions-0.1.10 spec/redmine/app/views/auth_sources/index.html.erb
redmine_extensions-0.0.36 spec/redmine/app/views/auth_sources/index.html.erb
redmine_extensions-0.0.34 spec/redmine/app/views/auth_sources/index.html.erb
redmine_extensions-0.1.09 spec/redmine/app/views/auth_sources/index.html.erb
redmine_extensions-0.1.07 spec/redmine/app/views/auth_sources/index.html.erb
redmine_extensions-0.1.06 spec/redmine/app/views/auth_sources/index.html.erb
redmine_extensions-0.1.05 spec/redmine/app/views/auth_sources/index.html.erb
redmine_extensions-0.1.04 spec/redmine/app/views/auth_sources/index.html.erb
redmine_extensions-0.1.03 spec/redmine/app/views/auth_sources/index.html.erb
redmine_extensions-0.0.33 spec/redmine/app/views/auth_sources/index.html.erb
redmine_extensions-0.1.02 spec/redmine/app/views/auth_sources/index.html.erb
redmine_extensions-0.1.01 spec/redmine/app/views/auth_sources/index.html.erb
redmine_extensions-0.0.29 spec/redmine/app/views/auth_sources/index.html.erb
redmine_extensions-0.0.28 spec/redmine/app/views/auth_sources/index.html.erb
redmine_extensions-0.0.27 spec/redmine/app/views/auth_sources/index.html.erb
redmine_extensions-0.0.24 spec/redmine/app/views/auth_sources/index.html.erb