web/app/views/imports/show_post_import.html.erb
changeset 249 d6e4f3690b6a
parent 110 02126b7e1cbb
--- a/web/app/views/imports/show_post_import.html.erb	Thu Oct 30 15:10:12 2014 +0100
+++ b/web/app/views/imports/show_post_import.html.erb	Fri Oct 31 17:50:24 2014 +0100
@@ -1,23 +1,30 @@
 <%= currently_importing "post" %>
 
-<legend>Upload via HTTP POST</legend>
-
-<p>
-  Benchmark data are required to be sent using POST method. 
-  Both <strong>x-www-form-urlencoded</strong> and <strong>JSON</strong>
-  content types are supported. Example <strong>curl</strong> parameters:
-</p>
+<div class="row">
+  <div class="col-sm-12">
+    <legend>Upload via HTTP POST</legend>
+    <p>
+      Benchmark data are required to be sent using POST method.
+      Both <strong>x-www-form-urlencoded</strong> and <strong>JSON</strong>
+      content types are supported. Example <strong>curl</strong> parameters:
+    </p>
+  </div>
 
-<pre>
-  curl '<%= push_imports_url %>'  \
-    --compressed \
-    -H 'Content-Type: application/x-www-form-urlencoded' \
-    --data-urlencode 'import={"timestamp": "2013-06-25T10:30:03Z","configuration": ... }'
-</pre>
+  <div class="col-xs-12 col-lg-6">
+    <pre>
+      curl '<%= push_imports_url %>'  \
+        --compressed \
+        -H 'Content-Type: application/x-www-form-urlencoded' \
+        --data-urlencode 'import={"timestamp": "2013-06-25T10:30:03Z","configuration": ... }'
+    </pre>
+  </div>
 
-<pre>
-  curl '<%= push_imports_url %>'  \
-    --compressed \
-    -H 'Content-Type: application/json' \
-    --data '{"timestamp": "2013-06-25T10:30:03Z","configuration": ... }'
-</pre>
+  <div class="col-xs-12 col-lg-6">
+    <pre>
+    curl '<%= push_imports_url %>'  \
+      --compressed \
+      -H 'Content-Type: application/json' \
+      --data '{"timestamp": "2013-06-25T10:30:03Z","configuration": ... }'
+    </pre>
+  </div>
+</div>