]> source.dussan.org Git - sonarqube.git/commitdiff
Fix ITs by adding a "plugins" div
authorDavid Gageot <david@gageot.net>
Fri, 21 Sep 2012 07:01:40 +0000 (09:01 +0200)
committerDavid Gageot <david@gageot.net>
Fri, 21 Sep 2012 07:01:40 +0000 (09:01 +0200)
sonar-server/src/main/webapp/WEB-INF/app/views/settings/_settings.html.erb

index c1cb9efeb2211a9343b72b09c07bee30e1e130f2..b4a829782ef468b68972cdaa74b23dd0fc584946 100644 (file)
@@ -1,29 +1,31 @@
-<h1 class="marginbottom10"><%= message('settings.page') -%></h1>
+<div id="plugins">
+  <h1 class="marginbottom10"><%= message('settings.page') -%></h1>
 
-<table width="100%">
-  <tr>
-    <td width="1%" nowrap class="column first">
-      <table class="data">
-        <thead>
-        <tr>
-          <th><%= message('category') -%></th>
-        </tr>
-        </thead>
-        <tbody>
-        <% by_name(@categories).each do |category| -%>
-          <tr id="select_<%= category -%>" class="select <%= cycle('even', 'odd', :name => 'category') -%> <%= 'selected' if @category==category -%>">
-            <td><%= link_to category_name(category), :category => category -%></td>
+  <table width="100%">
+    <tr>
+      <td width="1%" nowrap class="column first">
+        <table class="data">
+          <thead>
+          <tr>
+            <th><%= message('category') -%></th>
           </tr>
-        <% end -%>
-        </tbody>
-      </table>
-      <br/>
-    </td>
+          </thead>
+          <tbody>
+          <% by_name(@categories).each do |category| -%>
+            <tr id="select_<%= category -%>" class="select <%= cycle('even', 'odd', :name => 'category') -%> <%= 'selected' if @category==category -%>">
+              <td><%= link_to category_name(category), :category => category -%></td>
+            </tr>
+          <% end -%>
+          </tbody>
+        </table>
+        <br/>
+      </td>
 
-    <td class="column">
-      <div id="properties">
-        <%= render 'settings/properties' -%>
-      </div>
-    </td>
-  </tr>
-</table>
\ No newline at end of file
+      <td class="column">
+        <div id="properties">
+          <%= render 'settings/properties' -%>
+        </div>
+      </td>
+    </tr>
+  </table>
+</div>
\ No newline at end of file