diff options
author | Stas Vilchik <vilchiks@gmail.com> | 2014-04-23 13:40:02 +0600 |
---|---|---|
committer | Stas Vilchik <vilchiks@gmail.com> | 2014-04-23 13:40:02 +0600 |
commit | 1c75d12f531e999ebe6b8f466f46e6f47f6ef474 (patch) | |
tree | a9ddbc9f591db3c1622e48a4ef4f47539bbe85c8 | |
parent | 2353f07b5fbd1bf3e3ba6a03f57deaec30f2e6ee (diff) | |
download | sonarqube-1c75d12f531e999ebe6b8f466f46e6f47f6ef474.tar.gz sonarqube-1c75d12f531e999ebe6b8f466f46e6f47f6ef474.zip |
Return Coding Rules link
-rw-r--r-- | sonar-server/src/main/webapp/WEB-INF/app/views/layouts/_layout.html.erb | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/sonar-server/src/main/webapp/WEB-INF/app/views/layouts/_layout.html.erb b/sonar-server/src/main/webapp/WEB-INF/app/views/layouts/_layout.html.erb index d03743da01b..92f6894cdeb 100644 --- a/sonar-server/src/main/webapp/WEB-INF/app/views/layouts/_layout.html.erb +++ b/sonar-server/src/main/webapp/WEB-INF/app/views/layouts/_layout.html.erb @@ -25,6 +25,9 @@ <a href="<%= ApplicationController.root_context -%>/profiles" class="<%= 'selected' if selected_section==Navigation::SECTION_QUALITY_PROFILES -%>"><%= message('quality_profiles.page') -%></a> </li> <li> + <a href="<%= ApplicationController.root_context -%>/coding_rules" class="<%= 'selected' if selected_section==Navigation::SECTION_CODING_RULES -%>"><%= message('coding_rules.page') -%></a> + </li> + <li> <a href="<%= ApplicationController.root_context -%>/quality_gates" class="<%= 'selected' if selected_section==Navigation::SECTION_QUALITY_GATES -%>"><%= message('quality_gates.page') -%></a> </li> </ul> |