##// 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 14 </tr></thead>
15 15 <tbody>
16 16 <% for source in @auth_sources %>
17 <tr class="<%= cycle("odd", "even") %>">
17 <tr id="auth-source-<%= source.id %>" class="<%= cycle("odd", "even") %>">
18 18 <td><%= link_to(h(source.name), :action => 'edit', :id => source)%></td>
19 19 <td align="center"><%= h source.auth_method_name %></td>
20 20 <td align="center"><%= h source.host %></td>
General Comments 0
You need to be logged in to leave comments. Login now