comparison app/views/auth_sources/index.html.erb @ 507:0c939c159af4 redmine-1.2

Update to Redmine 1.2.1 on 1.2-stable branch (Redmine SVN rev 6270)
author Chris Cannam
date Thu, 14 Jul 2011 10:32:19 +0100
parents 513646585e45
children cbb26bc654de
comparison
equal deleted inserted replaced
441:cbce1fd3b1b7 507:0c939c159af4
13 <th></th> 13 <th></th>
14 </tr></thead> 14 </tr></thead>
15 <tbody> 15 <tbody>
16 <% for source in @auth_sources %> 16 <% for source in @auth_sources %>
17 <tr class="<%= cycle("odd", "even") %>"> 17 <tr class="<%= cycle("odd", "even") %>">
18 <td><%= link_to source.name, :action => 'edit', :id => source%></td> 18 <td><%= link_to(h(source.name), :action => 'edit', :id => source)%></td>
19 <td align="center"><%= source.auth_method_name %></td> 19 <td align="center"><%= h source.auth_method_name %></td>
20 <td align="center"><%= source.host %></td> 20 <td align="center"><%= h source.host %></td>
21 <td align="center"><%= source.users.count %></td> 21 <td align="center"><%= h source.users.count %></td>
22 <td class="buttons"> 22 <td class="buttons">
23 <%= link_to l(:button_test), :action => 'test_connection', :id => source %> 23 <%= link_to l(:button_test), :action => 'test_connection', :id => source %>
24 <%= link_to l(:button_delete), { :action => 'destroy', :id => source }, 24 <%= link_to l(:button_delete), { :action => 'destroy', :id => source },
25 :method => :post, 25 :method => :post,
26 :confirm => l(:text_are_you_sure), 26 :confirm => l(:text_are_you_sure),