Adds ids on rows in auth_sources/index view (#9659).
git-svn-id: svn+ssh://rubyforge.org/var/svn/redmine/trunk@7923 e93f8b46-1217-0410-a6f0-8f06a7374b81
This commit is contained in:
parent
703211c0a6
commit
398b700e57
|
@ -14,7 +14,7 @@
|
|||
</tr></thead>
|
||||
<tbody>
|
||||
<% for source in @auth_sources %>
|
||||
<tr class="<%= cycle("odd", "even") %>">
|
||||
<tr id="auth-source-<%= source.id %>" class="<%= cycle("odd", "even") %>">
|
||||
<td><%= link_to(h(source.name), :action => 'edit', :id => source)%></td>
|
||||
<td align="center"><%= h source.auth_method_name %></td>
|
||||
<td align="center"><%= h source.host %></td>
|
||||
|
|
Loading…
Reference in New Issue