Mercurial > hg > soundsoftware-site
comparison .svn/pristine/c2/c2155d1a90b73a86baf62c217f9d15ae922ab7b2.svn-base @ 909:cbb26bc654de redmine-1.3
Update to Redmine 1.3-stable branch (Redmine SVN rev 8964)
author | Chris Cannam |
---|---|
date | Fri, 24 Feb 2012 19:09:32 +0000 |
parents | |
children |
comparison
equal
deleted
inserted
replaced
908:c6c2cbd0afee | 909:cbb26bc654de |
---|---|
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 %> | |
24 <%= link_to l(:button_delete), { :action => 'destroy', :id => source }, | |
25 :method => :post, | |
26 :confirm => l(:text_are_you_sure), | |
27 :class => 'icon icon-del', | |
28 :disabled => source.users.any? %> | |
29 </td> | |
30 </tr> | |
31 <% end %> | |
32 </tbody> | |
33 </table> | |
34 | |
35 <p class="pagination"><%= pagination_links_full @auth_source_pages %></p> |