comparison .svn/pristine/06/06dd3ee8641385912fee02a84e6de53eed535f28.svn-base @ 1296:038ba2d95de8 redmine-2.2

Fix redmine-2.2 branch update (add missing svn files)
author Chris Cannam
date Fri, 14 Jun 2013 09:05:06 +0100
parents
children
comparison
equal deleted inserted replaced
1294:3e4c3460b6ca 1296:038ba2d95de8
1 <div class="contextual">
2 <%= link_to l(:label_auth_source_new), {:action => 'new'}, :class => 'icon icon-add' %>
3 </div>
4
5 <h2><%=l(:label_auth_source_plural)%></h2>
6
7 <table class="list">
8 <thead><tr>
9 <th><%=l(:field_name)%></th>
10 <th><%=l(:field_type)%></th>
11 <th><%=l(:field_host)%></th>
12 <th><%=l(:label_user_plural)%></th>
13 <th></th>
14 </tr></thead>
15 <tbody>
16 <% for source in @auth_sources %>
17 <tr id="auth-source-<%= source.id %>" class="<%= cycle("odd", "even") %>">
18 <td><%= link_to(h(source.name), :action => 'edit', :id => source)%></td>
19 <td align="center"><%= h source.auth_method_name %></td>
20 <td align="center"><%= h source.host %></td>
21 <td align="center"><%= h source.users.count %></td>
22 <td class="buttons">
23 <%= link_to l(:button_test), {:action => 'test_connection', :id => source}, :class => 'icon icon-test' %>
24 <%= delete_link auth_source_path(source) %>
25 </td>
26 </tr>
27 <% end %>
28 </tbody>
29 </table>
30
31 <p class="pagination"><%= pagination_links_full @auth_source_pages %></p>