about summary refs log tree commit diff
path: root/qc_app/templates/stdout_output.html
diff options
context:
space:
mode:
Diffstat (limited to 'qc_app/templates/stdout_output.html')
-rw-r--r--qc_app/templates/stdout_output.html4
1 files changed, 1 insertions, 3 deletions
diff --git a/qc_app/templates/stdout_output.html b/qc_app/templates/stdout_output.html
index f3fcde5..85345a9 100644
--- a/qc_app/templates/stdout_output.html
+++ b/qc_app/templates/stdout_output.html
@@ -2,9 +2,7 @@
 
 <h4>STDOUT Output</h4>
 <div class="cli-output">
-  {%for line in job.get("stdout", "").split("\n\n"):%}
-  <p>{{line}}</p>
-  {%endfor%}
+  <pre>{{job.get("stdout", "")}}</pre>
 </div>
 
 {%endmacro%}