summaryrefslogtreecommitdiffstats
path: root/app/views
diff options
context:
space:
mode:
authorJean-Philippe Lang <jp_lang@yahoo.fr>2011-11-25 18:13:31 +0000
committerJean-Philippe Lang <jp_lang@yahoo.fr>2011-11-25 18:13:31 +0000
commit398b700e57c5bf659b9504c383badc490655d760 (patch)
tree678afef807ce26022e0e7036ad2e0276fc17fd80 /app/views
parent703211c0a6bec8037105d2964f663c6492923f17 (diff)
downloadredmine-398b700e57c5bf659b9504c383badc490655d760.tar.gz
redmine-398b700e57c5bf659b9504c383badc490655d760.zip
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
Diffstat (limited to 'app/views')
-rw-r--r--app/views/auth_sources/index.html.erb2
1 files changed, 1 insertions, 1 deletions
diff --git a/app/views/auth_sources/index.html.erb b/app/views/auth_sources/index.html.erb
index 9da554496..f239184ae 100644
--- a/app/views/auth_sources/index.html.erb
+++ b/app/views/auth_sources/index.html.erb
@@ -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>