]> source.dussan.org Git - sonarqube.git/commitdiff
fix padding on the "Update Key" page
authorStas Vilchik <vilchiks@gmail.com>
Tue, 14 Jun 2016 08:51:00 +0000 (10:51 +0200)
committerStas Vilchik <vilchiks@gmail.com>
Tue, 14 Jun 2016 08:51:00 +0000 (10:51 +0200)
server/sonar-web/src/main/webapp/WEB-INF/app/views/project/prepare_key_bulk_update.html.erb

index 49064fa4d88fdf18c407a453a58df017f5fae3fc..7c5bcc61074b09312f0262a64ad29da7b57a84af 100644 (file)
@@ -1,4 +1,4 @@
-<%    
+<%
     if @string_to_replace && @replacement_string
       # validation screen for bulk update
       reset_cycle 'modules_tree'
         input.disabled=true;
       });
     }
-  </script>  
-  
-  <h1><%= @can_update ? message('update_key.bulk_update_confirmation_page') : message('update_key.bulk_update_impossible') -%></h1>
-  <br/>
-  <p>
-    <% if @can_update %>
-      <%= message('update_key.keys_will_be_updated_as_follows') -%>
-    <% else %>
-      <% if @duplicate_key_found %>
-        <%= message('update_key.cant_update_because_duplicate_keys', :params => [@string_to_replace, @replacement_string]) -%>
+  </script>
+
+  <div class="page">
+    <header class="page-header">
+      <h1 class="page-title">
+        <%= @can_update ? message('update_key.bulk_update_confirmation_page') : message('update_key.bulk_update_impossible') -%>
+      </h1>
+    </header>
+    <p>
+      <% if @can_update %>
+        <%= message('update_key.keys_will_be_updated_as_follows') -%>
       <% else %>
-        <%= message('update_key.no_key_to_update', :params => @string_to_replace) -%>
+        <% if @duplicate_key_found %>
+          <%= message('update_key.cant_update_because_duplicate_keys', :params => [@string_to_replace, @replacement_string]) -%>
+        <% else %>
+          <%= message('update_key.no_key_to_update', :params => @string_to_replace) -%>
+        <% end %>
       <% end %>
-    <% end %>
-  </p>
-  
-  <table class="data" style="width:1%; margin-top: 10px">
-    <thead>
-      <tr>
-        <th><%= message('update_key.old_key') -%></th>
-        <th><%= message('update_key.new_key') -%></th>
-      </tr>
-    </thead>
-    <tbody>
-      <%= render :partial => 'prepare_keys', :locals => {:current_module => @project, :module_depth => 0, :key_check_results => @key_check_results} -%>
-    </tbody>
-  </table>
-  
-  <% if @can_update %>
-    <% form_tag( {:action => 'perform_key_bulk_update', :id => @project.id }, :onsubmit => "update_launched();$j('#loading_bulk_update').show();") do -%>
-      <input type="hidden" value="<%= @project.id -%>" name="id" id="project_id">
-      <input type="hidden" value="<%= @string_to_replace -%>" name="string_to_replace" id="string_to_replace">
-      <input type="hidden" value="<%= @replacement_string -%>" name="replacement_string" id="replacement_string">
+    </p>
+
+    <table class="data" style="width:1%; margin-top: 10px">
+      <thead>
+        <tr>
+          <th><%= message('update_key.old_key') -%></th>
+          <th><%= message('update_key.new_key') -%></th>
+        </tr>
+      </thead>
+      <tbody>
+        <%= render :partial => 'prepare_keys', :locals => {:current_module => @project, :module_depth => 0, :key_check_results => @key_check_results} -%>
+      </tbody>
+    </table>
+
+    <% if @can_update %>
+      <% form_tag( {:action => 'perform_key_bulk_update', :id => @project.id }, :onsubmit => "update_launched();$j('#loading_bulk_update').show();") do -%>
+        <input type="hidden" value="<%= @project.id -%>" name="id" id="project_id">
+        <input type="hidden" value="<%= @string_to_replace -%>" name="string_to_replace" id="string_to_replace">
+        <input type="hidden" value="<%= @replacement_string -%>" name="replacement_string" id="replacement_string">
+        <br/>
+        <%= submit_tag message('update_key.rename'), :id => 'bulk_update_button', :class => 'action' -%>
+        &nbsp;<a href="<%= url_for :action => 'key', :id => @project.key -%>"><%= message('cancel') -%></a>
+        <span class="loading" id="loading_bulk_update" style="display: none; padding: 3px 10px;"></span>
+      <% end %>
+    <% else %>
       <br/>
-      <%= submit_tag message('update_key.rename'), :id => 'bulk_update_button', :class => 'action' -%>
-      &nbsp;<a href="<%= url_for :action => 'key', :id => @project.key -%>"><%= message('cancel') -%></a>
-      <span class="loading" id="loading_bulk_update" style="display: none; padding: 3px 10px;"></span>
+      <a href="<%= url_for :action => 'key', :id => @project.key -%>"><%= message('back') -%></a>
     <% end %>
-  <% else %>
-    <br/>
-    <a href="<%= url_for :action => 'key', :id => @project.key -%>"><%= message('back') -%></a>
-  <% end %>
-    
-<% end %>
\ No newline at end of file
+  </div>
+
+<% end %>