##// END OF EJS Templates
Adds ids on rows in auth_sources/index view (#9659)....
Jean-Philippe Lang -
r7803:398b700e57c5
parent child
Show More
@@ -14,7 +14,7
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 id="auth-source-<%= source.id %>" class="<%= cycle("odd", "even") %>">
18 <td><%= link_to(h(source.name), :action => 'edit', :id => source)%></td>
18 <td><%= link_to(h(source.name), :action => 'edit', :id => source)%></td>
19 <td align="center"><%= h source.auth_method_name %></td>
19 <td align="center"><%= h source.auth_method_name %></td>
20 <td align="center"><%= h source.host %></td>
20 <td align="center"><%= h source.host %></td>
General Comments 0
You need to be logged in to leave comments. Login now