about summary refs log tree commit diff
path: root/uploader/templates
diff options
context:
space:
mode:
Diffstat (limited to 'uploader/templates')
-rw-r--r--uploader/templates/phenotypes/job-status.html29
1 files changed, 29 insertions, 0 deletions
diff --git a/uploader/templates/phenotypes/job-status.html b/uploader/templates/phenotypes/job-status.html
index d531a71..cfbedd5 100644
--- a/uploader/templates/phenotypes/job-status.html
+++ b/uploader/templates/phenotypes/job-status.html
@@ -40,6 +40,35 @@
   {%endif%}
 </div>
 
+<div class="row" style="min-height: 3em; max-height: 30em; overflow: auto;">
+  <table class="table">
+    <caption>Errors</caption>
+    <thead>
+      <tr>
+        <th>File</th>
+        <th>Row</th>
+        <th>Column</th>
+        <th>Message</th>
+    </thead>
+
+    <tbody>
+      {%for error in errors%}
+      <tr>
+        <td>{{error.filename}}</td>
+        <td>{{error.rowtitle}}</td>
+        <td>{{error.coltitle}}</td>
+        <td>{{error.message}}</td>
+      </tr>
+      {%else%}
+      <tr>
+        <td colspan="4" class="text-info">
+          No errors found so far.
+        </td>
+      </tr>
+      {%endfor%}
+    </tbody>
+  </table>
+</div>
 <div class="row">
   {{cli_output(job, "stdout")}}
 </div>