aboutsummaryrefslogtreecommitdiff
path: root/qc_app/templates/samples/upload-failure.html
blob: 09e2ecf356e8ca7d8a51b3147acc05c38470ba69 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
{%extends "base.html"%}
{%from "cli-output.html" import cli_output%}

{%block title%}Samples Upload Failure{%endblock%}

{%block contents%}
<h1 class="heading">{{job.job_name}}</h2>

<p>There was a failure attempting to upload the samples.</p>

<p>Here is some information to help with debugging the issue. Provide this
  information to the developer/maintainer.</p>

<h3>Debugging Information</h3>
<ul>
  <li><strong>job id</strong>: {{job.job_id}}</li>
  <li><strong>status</strong>: {{job.status}}</li>
  <li><strong>job type</strong>: {{job["job-type"]}}</li>
</ul>

<h4>stdout</h4>
{{cli_output(job, "stdout")}}

<h4>stderr</h4>
{{cli_output(job, "stderr")}}

{%endblock%}