From 098cc4ea76c5c6fbb220fe9c8302a08123832cb0 Mon Sep 17 00:00:00 2001 From: Frederick Muriuki Muriithi Date: Tue, 19 Dec 2023 19:37:31 +0300 Subject: Commit missing templates. --- qc_app/templates/samples/upload-failure.html | 27 +++++++++++++++++++++++++++ 1 file changed, 27 insertions(+) create mode 100644 qc_app/templates/samples/upload-failure.html (limited to 'qc_app/templates/samples/upload-failure.html') diff --git a/qc_app/templates/samples/upload-failure.html b/qc_app/templates/samples/upload-failure.html new file mode 100644 index 0000000..09e2ecf --- /dev/null +++ b/qc_app/templates/samples/upload-failure.html @@ -0,0 +1,27 @@ +{%extends "base.html"%} +{%from "cli-output.html" import cli_output%} + +{%block title%}Samples Upload Failure{%endblock%} + +{%block contents%} +

{{job.job_name}}

+ +

There was a failure attempting to upload the samples.

+ +

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

+ +

Debugging Information

+ + +

stdout

+{{cli_output(job, "stdout")}} + +

stderr

+{{cli_output(job, "stderr")}} + +{%endblock%} -- cgit v1.2.3