about summary refs log tree commit diff
path: root/uploader/templates/samples/upload-failure.html
diff options
context:
space:
mode:
Diffstat (limited to 'uploader/templates/samples/upload-failure.html')
-rw-r--r--uploader/templates/samples/upload-failure.html11
1 files changed, 8 insertions, 3 deletions
diff --git a/uploader/templates/samples/upload-failure.html b/uploader/templates/samples/upload-failure.html
index 09e2ecf..75192ec 100644
--- a/uploader/templates/samples/upload-failure.html
+++ b/uploader/templates/samples/upload-failure.html
@@ -4,7 +4,8 @@
 {%block title%}Samples Upload Failure{%endblock%}
 
 {%block contents%}
-<h1 class="heading">{{job.job_name}}</h2>
+<div class="row">
+<h2 class="heading">{{job.job_name[0:50]}}&hellip;</h2>
 
 <p>There was a failure attempting to upload the samples.</p>
 
@@ -13,15 +14,19 @@
 
 <h3>Debugging Information</h3>
 <ul>
-  <li><strong>job id</strong>: {{job.job_id}}</li>
+  <li><strong>job id</strong>: {{job.jobid}}</li>
   <li><strong>status</strong>: {{job.status}}</li>
   <li><strong>job type</strong>: {{job["job-type"]}}</li>
 </ul>
+</div>
 
+<div class="row">
 <h4>stdout</h4>
 {{cli_output(job, "stdout")}}
+</div>
 
+<div class="row">
 <h4>stderr</h4>
 {{cli_output(job, "stderr")}}
-
+</div>
 {%endblock%}