about summary refs log tree commit diff
path: root/qc_app/templates/rqtl2/rqtl2-qc-job-error.html
diff options
context:
space:
mode:
Diffstat (limited to 'qc_app/templates/rqtl2/rqtl2-qc-job-error.html')
-rw-r--r--qc_app/templates/rqtl2/rqtl2-qc-job-error.html8
1 files changed, 3 insertions, 5 deletions
diff --git a/qc_app/templates/rqtl2/rqtl2-qc-job-error.html b/qc_app/templates/rqtl2/rqtl2-qc-job-error.html
index 524282b..90e8887 100644
--- a/qc_app/templates/rqtl2/rqtl2-qc-job-error.html
+++ b/qc_app/templates/rqtl2/rqtl2-qc-job-error.html
@@ -4,7 +4,7 @@
 {%block title%}R/qtl2 bundle: QC Job Error{%endblock%}
 
 {%macro errors_table(tableid, errors)%}
-<table id="{{tableid}}" class="error-table">
+<table id="{{tableid}}" class="table error-table">
   <caption>{{caption}}</caption>
   <thead>
     <tr>
@@ -51,7 +51,7 @@
   <p>These files are listed in the bundle's control file, but do not actually
     exist in the bundle</p>
 </div>
-<table id="tbl-errors-missing-files" class="error-table">
+<table id="tbl-errors-missing-files" class="table error-table">
   <thead>
     <tr>
       <th>Control File Key</th>
@@ -114,9 +114,7 @@
 
 <h4>Log</h4>
 <div class="cli-output">
-  {%for msg in messages%}
-  {{msg}}<br />
-  {%endfor%}
+  <pre>{{"\n".join(messages)}}</pre>
 </div>
 
 {%endblock%}