diff options
author | Simon Brandhof <simon.brandhof@gmail.com> | 2012-11-07 11:02:55 +0100 |
---|---|---|
committer | Simon Brandhof <simon.brandhof@gmail.com> | 2012-11-07 11:03:12 +0100 |
commit | bac1eab8188e496cf4c46dfcea08e74e63cebf1c (patch) | |
tree | 5c0dca52c7df0939c581d33ca9b1a3eafa47628f | |
parent | e5a5982d9004ac5ad1187cff8f23cd8f028190f0 (diff) | |
download | sonarqube-bac1eab8188e496cf4c46dfcea08e74e63cebf1c.tar.gz sonarqube-bac1eab8188e496cf4c46dfcea08e74e63cebf1c.zip |
SONAR-3942 Display keys of the installed plugins
-rw-r--r-- | sonar-server/src/main/webapp/WEB-INF/app/views/updatecenter/index.html.erb | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sonar-server/src/main/webapp/WEB-INF/app/views/updatecenter/index.html.erb b/sonar-server/src/main/webapp/WEB-INF/app/views/updatecenter/index.html.erb index 7f3e3191e01..f483d55f8e3 100644 --- a/sonar-server/src/main/webapp/WEB-INF/app/views/updatecenter/index.html.erb +++ b/sonar-server/src/main/webapp/WEB-INF/app/views/updatecenter/index.html.erb @@ -22,7 +22,7 @@ @user_plugins.each do |plugin| %> <tr class="select <%= cycle('even', 'odd', :name => 'user') -%>" id="select_<%= plugin.getKey() -%>"> - <td width="1%" nowrap><b><a href="#plugin" onclick="showPlugin('<%= plugin.getKey() -%>')"><%= h(plugin.getName()) -%></a></b></td> + <td width="1%" nowrap><b><a href="#plugin" onclick="showPlugin('<%= plugin.getKey() -%>')"><%= h(plugin.getName()) -%></a></b> <span class="note">[<%= h plugin.getKey() -%>]</span></td> <td><%= plugin.getVersion() || '-' -%></td> <td> <%= plugin.getDescription() -%> @@ -70,7 +70,7 @@ @core_plugins.each do |plugin| %> <tr class="<%= cycle('even','odd', :name => 'core') -%>" id="<%= u plugin.getKey() -%>"> - <td width="1%" nowrap><b><%= plugin.getName() -%></b></td> + <td width="1%" nowrap><b><%= plugin.getName() -%></b> <span class="note">[<%= h plugin.getKey() -%>]</span></td> <td><%= plugin.getDescription() -%></td> </tr> <% end %> |